Categorygithub.com/schematichq/schematic-go
modulepackage
1.1.2
Repository: https://github.com/schematichq/schematic-go.git
Documentation: pkg.go.dev

# README

schematic-go

Installation and Setup

  1. Install the Go library:
go get github.com/schematichq/schematic-go
  1. Issue an API key for the appropriate environment using the Schematic app. Be sure to capture the secret key when you issue the API key; you'll only see this key once, and this is what you'll use with the Schematic Go library.

  2. Using this secret key, initialize a client in your Go application:

import (
  "os"

  option "github.com/schematichq/schematic-go/option"
  schematicclient "github.com/schematichq/schematic-go/client"
)

func main() {
  apiKey := os.Getenv("SCHEMATIC_API_KEY")
  client := schematicclient.NewSchematicClient(option.WithAPIKey(apiKey))
  defer client.Close()
}

By default, the client will do some local caching for flag checks, if you would like to change this behavior, you can do so using an initialization option to specify the max size of the cache (in terms of number of records) and the max age of the cache (as a time.Duration):

import (
  "os"
  "time"

  option "github.com/schematichq/schematic-go/option"
  schematicclient "github.com/schematichq/schematic-go/client"
)

func main() {
  apiKey := os.Getenv("SCHEMATIC_API_KEY")
  cacheSize := 100
  cacheTTL := 1 * time.Millisecond
  client := schematicclient.NewSchematicClient(
    option.WithAPIKey(apiKey),
    option.WithLocalFlagCheckCache(cacheSize, cacheTTL),
  )
  defer client.Close()
}

You can also disable local caching entirely with an initialization option; bear in mind that, in this case, every flag check will result in a network request:

import (
  "os"

  option "github.com/schematichq/schematic-go/option"
  schematicclient "github.com/schematichq/schematic-go/client"
)

func main() {
  apiKey := os.Getenv("SCHEMATIC_API_KEY")
  client := schematicclient.NewSchematicClient(option.WithAPIKey(apiKey), option.WithDisabledFlagCheckCache())
  defer client.Close()
}

You may want to specify default flag values for your application, which will be used if there is a service interruption or if the client is running in offline mode (see below). You can do this using an initialization option:

import (
  "os"

  option "github.com/schematichq/schematic-go/option"
  schematicclient "github.com/schematichq/schematic-go/client"
)

func main() {
  apiKey := os.Getenv("SCHEMATIC_API_KEY")
  client := schematicclient.NewSchematicClient(option.WithAPIKey(apiKey), option.WithDefaultFlagValues(map[string]bool{
    "some-flag-key": true,
  }))
  defer client.Close()
}

Usage examples

Sending identify events

Create or update users and companies using identify events.

import (
  "context"
  "os"

  option "github.com/schematichq/schematic-go/option"
  schematicclient "github.com/schematichq/schematic-go/client"
  schematicgo "github.com/schematichq/schematic-go"
)

func main() {
  apiKey := os.Getenv("SCHEMATIC_API_KEY")
  client := schematicclient.NewSchematicClient(option.WithAPIKey(apiKey))
  defer client.Close()

  client.Identify(context.Background(), &schematicgo.EventBodyIdentify{
    Event: "some-action",
    Company: map[string]any{
      "id": "your-company-id",
    },
    User: map[string]any{
      "email":   "[email protected]",
      "user-id": "your-user-id",
    },
    Name: "Wile E. Coyote",
    Traits: map[string]any{
      "city":        "Atlanta",
      "login_count": 24,
      "is_staff":    false,
    },
  })
}

This call is non-blocking and there is no response to check.

Sending track events

Track activity in your application using track events; these events can later be used to produce metrics for targeting.

import (
  "context"
  "os"

  option "github.com/schematichq/schematic-go/option"
  schematicclient "github.com/schematichq/schematic-go/client"
  schematicgo "github.com/schematichq/schematic-go"
)

func main() {
  apiKey := os.Getenv("SCHEMATIC_API_KEY")
  client := schematicclient.NewSchematicClient(option.WithAPIKey(apiKey))
  defer client.Close()

  client.Track(context.Background(), &schematicgo.EventBodyTrack{
    Event: "some-action",
    Company: map[string]any{
      "id": "your-company-id",
    },
    User: map[string]any{
      "email":   "[email protected]",
      "user-id": "your-user-id",
    },
  })
}

This call is non-blocking and there is no response to check.

Creating and updating companies

Although it is faster to create companies and users via identify events, if you need to handle a response, you can use the companies API to upsert companies. Because you use your own identifiers to identify companies, rather than a Schematic company ID, creating and updating companies are both done via the same upsert operation:

import (
  "context"
  "os"

  option "github.com/schematichq/schematic-go/option"
  schematicclient "github.com/schematichq/schematic-go/client"
  schematicgo "github.com/schematichq/schematic-go"
)

func main() {
  apiKey := os.Getenv("SCHEMATIC_API_KEY")
  client := schematicclient.NewSchematicClient(option.WithAPIKey(apiKey))
  defer client.Close()

  body := &schematicgo.UpsertCompanyRequestBody{
    Keys: map[string]any{
      "id": "your-company-id",
    },
    Name: "Acme Widgets, Inc.",
    Traits: map[string]any{
      "city":       "Atlanta",
      "high_score": 25,
      "is_active":  true,
    },
  })
  resp, err := client.API().Companies.UpsertCompany(context.Background, body)
}

You can define any number of company keys; these are used to address the company in the future, for example by updating the company's traits or checking a flag for the company. You can also define any number of company traits; these can then be used as targeting parameters.

Creating and updating users

Similarly, you can upsert users using the Schematic API, as an alternative to using identify events. Because you use your own identifiers to identify users, rather than a Schematic user ID, creating and updating users are both done via the same upsert operation:

import (
  "context"
  "os"

  option "github.com/schematichq/schematic-go/option"
  schematicclient "github.com/SchematicHQ/schematic-go/client"
  schematicgo "github.com/SchematicHQ/schematic-go"
)

func main() {
  apiKey := os.Getenv("SCHEMATIC_API_KEY")
  client := schematicclient.NewSchematicClient(option.WithAPIKey(apiKey))
  defer client.Close()

  body := &schematicgo.UpsertUserRequestBody{
    Keys: map[string]any{
      "email":   "[email protected]",
      "user-id": "your-user-id",
    },
    Company: map[string]any{
      "id": "your-company-id",
    },
    Name: "Wile E. Coyote",
    Traits: map[string]any{
      "city":        "Atlanta",
      "login_count": 24,
      "is_staff":    false,
    },
  })

  resp, err := client.API().Companies.UpsertUser(context.Background(), body)
}

You can define any number of user keys; these are used to address the user in the future, for example by updating the user's traits or checking a flag for the user. You can also define any number of user traits; these can then be used as targeting parameters.

Checking flags

When checking a flag, you'll provide keys for a company and/or keys for a user. You can also provide no keys at all, in which case you'll get the default value for the flag.

import (
  "context"
  "os"

  option "github.com/schematichq/schematic-go/option"
  schematicclient "github.com/schematichq/schematic-go/client"
  schematicgo "github.com/schematichq/schematic-go"
)

func main() {
  apiKey := os.Getenv("SCHEMATIC_API_KEY")
  client := schematicclient.NewSchematicClient(option.WithAPIKey(apiKey))
  defer client.Close()

  evaluationCtx := schematicgo.CheckFlagRequestBody{
    Company: map[string]any{
      "id": "your-company-id",
    },
    User: map[string]any{
      "email":   "[email protected]",
      "user-id": "your-user-id",
    },
  }

  if client.CheckFlag(context.Background(), "some-flag-key", evaluationCtx) {
    // Flag is on
  } else {
    // Flag is off
  }
}

Other API operations

The Schematic API supports many operations beyond these, accessible via client.API(). See the API submodule readme for a full list and documentation of supported operations.

Testing

Offline Mode

In development or testing environments, you may want to avoid making network requests to the Schematic API. You can run Schematic in offline mode by not providing an API key to the client:

import (
  schematicclient "github.com/schematichq/schematic-go/client"
)

func main() {
  client := schematicclient.NewSchematicClient()
  defer client.Close()
}

You can also enable offline mode by providing an empty API key:

import (
  option "github.com/schematichq/schematic-go/option"
  schematicclient "github.com/schematichq/schematic-go/client"
)

func main() {
  client := schematicclient.NewSchematicClient(option.WithAPIKey(""))
  defer client.Close()
}

Or, by using the offline mode option:

import (
  option "github.com/schematichq/schematic-go/option"
  schematicclient "github.com/schematichq/schematic-go/client"
)

func main() {
  client := schematicclient.NewSchematicClient(option.WithOfflineMode())
  defer client.Close()
}

Offline mode works well with flag defaults:

import (
  option "github.com/schematichq/schematic-go/option"
  schematicclient "github.com/schematichq/schematic-go/client"
)

func main() {
  client := schematicclient.NewSchematicClient(option.WithOfflineMode(), option.WithDefaultFlagValues(map[string]bool{
    "some-flag-key": true,
  }))
  defer client.Close()
}

In an automated testing context, you may also want to use offline mode and specify single flag responses for test cases:

import (
  option "github.com/schematichq/schematic-go/option"
  schematicclient "github.com/schematichq/schematic-go/client"
)

func TestSomeFunctionality(t *testing.T) {
  client := schematicclient.NewSchematicClient(option.WithOfflineMode())
  defer client.Close()

  client.SetFlagDefault("some-flag-key", true)

  // test code that expects the flag to be on
}

# Packages

No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
Package mocks is a generated GoMock package.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author

# Functions

Bool returns a pointer to the given bool value.
Byte returns a pointer to the given byte value.
Complex128 returns a pointer to the given complex128 value.
Complex64 returns a pointer to the given complex64 value.
Float32 returns a pointer to the given float32 value.
Float64 returns a pointer to the given float64 value.
Int returns a pointer to the given int value.
Int16 returns a pointer to the given int16 value.
Int32 returns a pointer to the given int32 value.
Int64 returns a pointer to the given int64 value.
Int8 returns a pointer to the given int8 value.
MustParseDate attempts to parse the given string as a date time.Time, and panics upon failure.
MustParseDateTime attempts to parse the given string as a datetime time.Time, and panics upon failure.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
Rune returns a pointer to the given rune value.
String returns a pointer to the given string value.
Time returns a pointer to the given time.Time value.
Uint returns a pointer to the given uint value.
Uint16 returns a pointer to the given uint16 value.
Uint32 returns a pointer to the given uint32 value.
Uint64 returns a pointer to the given uint64 value.
Uint8 returns a pointer to the given uint8 value.
Uintptr returns a pointer to the given uintptr value.
UUID returns a pointer to the given uuid.UUID value.

# Constants

No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author

# Variables

Environments defines all of the API environments.

# Structs

No description provided by the author
The created resource.
No description provided by the author
The returned resource.
The updated resource.
No description provided by the author
Bad request.
The created resource.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
The updated resource.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
The returned resource.
No description provided by the author
The created resource.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
The updated resource.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
The returned resource.
The updated resource.
Input parameters.
No description provided by the author
No description provided by the author
Input parameters.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
Input parameters.
No description provided by the author
No description provided by the author
Input parameters.
No description provided by the author
No description provided by the author
Input parameters.
No description provided by the author
No description provided by the author
Input parameters.
No description provided by the author
No description provided by the author
Input parameters.
No description provided by the author
No description provided by the author
Input parameters.
No description provided by the author
No description provided by the author
Input parameters.
No description provided by the author
No description provided by the author
Input parameters.
No description provided by the author
No description provided by the author
Input parameters.
No description provided by the author
No description provided by the author
Input parameters.
No description provided by the author
No description provided by the author
Input parameters.
No description provided by the author
No description provided by the author
Input parameters.
No description provided by the author
No description provided by the author
Input parameters.
No description provided by the author
No description provided by the author
Input parameters.
No description provided by the author
No description provided by the author
The created resource.
Input parameters.
No description provided by the author
No description provided by the author
Input parameters.
No description provided by the author
No description provided by the author
Input parameters.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
The created resource.
The created resource.
The created resource.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
The created resource.
The updated resource.
No description provided by the author
No description provided by the author
No description provided by the author
Information about the company associated with the user; required only if it is a new user.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
Forbidden.
No description provided by the author
Input parameters.
No description provided by the author
No description provided by the author
Input parameters.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
Input parameters.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
Input parameters.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
Input parameters.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
Server error.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
The created resource.
No description provided by the author
Input parameters.
No description provided by the author
No description provided by the author
Input parameters.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
Input parameters.
No description provided by the author
No description provided by the author
Input parameters.
No description provided by the author
No description provided by the author
Input parameters.
No description provided by the author
No description provided by the author
Input parameters.
No description provided by the author
No description provided by the author
Input parameters.
No description provided by the author
No description provided by the author
Input parameters.
No description provided by the author
No description provided by the author
Input parameters.
No description provided by the author
No description provided by the author
Input parameters.
No description provided by the author
No description provided by the author
Input parameters.
No description provided by the author
No description provided by the author
Input parameters.
No description provided by the author
No description provided by the author
Input parameters.
No description provided by the author
No description provided by the author
Input parameters.
No description provided by the author
No description provided by the author
Input parameters.
No description provided by the author
No description provided by the author
Input parameters.
No description provided by the author
No description provided by the author
Input parameters.
No description provided by the author
No description provided by the author
Input parameters.
No description provided by the author
No description provided by the author
Input parameters.
No description provided by the author
No description provided by the author
Input parameters.
No description provided by the author
No description provided by the author
Input parameters.
No description provided by the author
No description provided by the author
Input parameters.
No description provided by the author
No description provided by the author
Input parameters.
No description provided by the author
No description provided by the author
Input parameters.
No description provided by the author
No description provided by the author
Input parameters.
No description provided by the author
No description provided by the author
Input parameters.
No description provided by the author
No description provided by the author
Input parameters.
No description provided by the author
No description provided by the author
Input parameters.
No description provided by the author
No description provided by the author
Input parameters.
No description provided by the author
No description provided by the author
Input parameters.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
Not found.
No description provided by the author
No description provided by the author
No description provided by the author
The updated resource.
No description provided by the author
No description provided by the author
No description provided by the author
The returned resource.
No description provided by the author
The updated resource.
No description provided by the author
Input parameters.
No description provided by the author
No description provided by the author
No description provided by the author
The created resource.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
The updated resource.
The returned resource.
No description provided by the author
No description provided by the author
Unauthorized.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author

# Interfaces

No description provided by the author
No description provided by the author

# Type aliases

No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
Filter by plan type.
Filter by plan type.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
Either 'identify' or 'track'.
No description provided by the author
No description provided by the author
Period of time over which to measure the track event metric.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
The type of allocation that is being used.
The type of allocation that is being used.
The type of allocation that is being used.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
Filter by plan type.
Filter by plan type.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author