Mantis Aliens

  • Home
  • Mantis Aliens

Mantis Aliens Ascended Master
(1)

17/06/2024

iam_admin stipe python 1

17/06/2024
16/06/2024
Here are your clearanceTokens ! Please send email and I will recover your funds from Thailand ! ThanksYou ! Bieszczat, K...
14/06/2024

Here are your clearance
Tokens ! Please send email and I will recover your funds from Thailand ! Thanks
You !
Bieszczat, Keith

This is me ! Grateful’s actual! I amThe real one !
14/06/2024

This is me ! Grateful’s actual! I am
The real one !

 #1898644273894038 first clearance sold ! Thank you!Please provide your email address and phone number so I can send the...
14/06/2024

#1898644273894038 first clearance sold ! Thank you!
Please provide your email address and phone number so I can send the clearance out !

14/06/2024

My goals with Restream are to explain my life what has occurred and help others avoid some of the problems that have come to me. I am also an entrepreneur I am seeking donations for my family’s security budget because we are constant attack in our own homes. Their have dozens of attempted murders on my life and the life of my family. And we are seeking combat assistance from federal agencies and departments like the DoD the NSA and the CIA to stop the hate crimes which are occurring against us on a daily basis . The suspects have been posoining are food supply for the past 10-12 weeks. And we want combat assistance for th repeated attacks in Elmhurst Illinois. Dupage county the Chicagoland area . I am also seeking monetary reimbursement for the 10,000$ dollars I made in the past couple of months selling my computational foundation backed men in black security clearances. Many people purchased the clearances from me because I am an ascended master who created the dimension we are in when I ascended . I am also seeking donations for medical assistance because my family now require scheduled narcotics to survive because of all the attacks. Please donate and pray as we are suffering however we are now fighting back against the scumbags who have continued to possum our food supplies and commit home invasions on our property. My family in other dimensions were murdered in cold blood by the same suspects who tortured them for multiple weeks before they killed them by burning them alive. The females were r***d hundred of times by the darkness terror network. We have no problem defending ourselves and we will not be burned alive ever again. We will neutralize the terrorists and war criminals who continue to attack us and rob and embezzle my businesses money. Please pray for their souls as we are now beginning to move in their direction with combat capability. My father is a Vietnam combat veteran who earned two bronze stars for valor in combat operations were very few off his company survived. Meaning we are a United States veteran household and we deserve to be defended to the fullest extend of federal intelligence agencies. NSA and CIA are tasked with stopping the terrorists who have continued to torture. Us as well as the entire neighborhood and half of the local community. I am grateful and even though I will eventually die my time has not come yet . And I am fighting back with all my honor and capabilities.
Please donate or buy my computational Men IN Black clearances. I am a Man In Black who has a DUNs number of #000006. Thanks for your time money and assistance. I look forward to some peaceful days with my loved ones after the terrorists have been arrested or neutralized by our forces.

13/04/2024

query example {
tenantContexts(hostNames:["your-domain.atlassian.net"]) {
cloudId
}
}

X-ExperimentalApi: DevOpsBeta

use this field you must set a X-ExperimentalApi: confluence-agg-beta

modules:
jira:uiModifications:
- key: ui-modifications-app
title: Example UI modifications app
resource: uiModificationsApp
resources:
- key: uiModificationsApp
path: static/ui-modifications/dist

//static/hello-world/index.js
import { uiModificationsApi } from '/jira-bridge';

uiModificationsApi.onInit(
({ api }) => {
const { getFieldById } = api;

// Hiding the priority field
const priority = getFieldById('priority');
priority?.setVisible(false);

// Changing the summary field label
const summary = getFieldById('summary');
summary?.setName('Modified summary label');

// Changing the assignee field description
const assignee = getFieldById('assignee');
assignee?.setDescription('Description added by UI modifications');

// Get value of labels field
const labels = getFieldById('labels');
const labelsData = labels?.getValue() || [];
labels?.setDescription(
`${labelsData.length} label(s) are currently selected`
);
},
() => ['priority', 'summary', 'assignee', 'labels']
);

import { uiModificationsApi } from '/jira-bridge';

// Below: imaginary import
import { shouldPriorityBeHidden } from '../my-services';

uiModificationsApi.onInit(
({ api }) => {
const { getFieldById } = api;

// Hiding the priority field
const priority = getFieldById('priority');
// We store the update Promise
const priorityUpdate = shouldPriorityBeHidden().then((result) => {
if (result === true) {
priority?.setVisible(false);
}
});

// Changing the assignee field description
const assignee = getFieldById('assignee');
assignee?.setDescription('Description added by UI modifications');

// We return the promise. In this case even the assignee field description
// will be updated only after the priorityUpdate promise resolves.
return priorityUpdate;
},
() => ['priority', 'assignee']
);

import api, { route } from '/api';

const createUiModification = async (projectId, issueTypeId) => {
const result = await api.asApp().requestJira(route`/rest/api/3/uiModifications`, {
method: "POST",
body: JSON.stringify({
name: 'demo-ui-modification',
data: '["custom data", "for your app"]',
contexts: [
{ projectId, issueTypeId, viewType: 'GIC' },
{ projectId, issueTypeId, viewType: 'IssueView' }
],
}),
headers: {
'Content-Type': 'application/json',
'Accept': 'application/json',
},
});
console.log(`Created UI modification with status ${result.status}`);
return result.status;
}m

uiModifications: Array

resources: # list below the static resources entries for your app
- key: my-resource-1
path: relative/path/to/resource/one/directory
- key: my-resource-2
path: relative/path/to/resource/two/directory

modules:
jira:issuePanel:
- key: hello-world-panel
title: Custom UI App
description: A Forge app with resources
resource: my-resource-1 # link to the resources listed below
app:
id: ""
resources: # list below the resource entries for your app
- key: my-resource-1
path: relative/path/to/resource/one/directory

forge create

cd hello-world-custom-ui

hello-world-custom-ui
|-- src
| `-- index.js
|-- static
| `-- hello-world
| `-- src
| `-- index.js
| `-- App.js
| `-- public
| `-- index.html
| `-- package.json
| `-- package-lock.json
|-- manifest.yml
|-- package.json
|-- package-lock.json
`-- README.md

modules:
jira:issuePanel:
- key: hello-world-panel
resource: main
resolver:
function: resolver
viewportSize: medium
title: Hello World from Emma Richards
icon: https://developer.atlassian.com/platform/forge/images/issue-panel-icon.svg
function:
- key: resolver
handler: index.handler
resources:
- key: main
path: static/hello-world/build
app:
id: ''

tatic/hello-world directory.
Install the needed dependencies:
1
npm install
Build the assets:
1
npm run build

forge deploy
Install your app by running:
1
forge install
Select your Atlassian product using the arrow keys and press the enter key.

npx create-react-app my-app
cd my-app
npm start

npx create-react-app my-app
(npx is a package runner tool that comes with npm 5.2+ and higher, see instructions for older npm versions)

npm

npm init react-app my-app
npm init is available in npm 6+

Yarn

yarn create react-app my-app
yarn create is available in Yarn 0.25+

It will create a directory called my-app inside the current folder.
Inside that directory, it will generate the initial project structure and install the transitive dependencies:

my-app
├── README.md
├── node_modules
├── package.json
├── .gitignore
├── public
│ ├── favicon.ico
│ ├── index.html
│ └── manifest.json
└── src
├── App.css
├── App.js
├── App.test.js
├── index.css
├── index.js
├── logo.svg
└── serviceWorker.js
└── setupTests.js
No configuration or complicated folder structures, only the files you need to build your app.
Once the installation is done, you can open your project folder:

cd my-app
Inside

import React, { useEffect, useState } from 'react';
import { invoke } from '/bridge';

function App() {
const [data, setData] = useState(null);

useEffect(() => {
invoke('getText', { example: 'my-invoke-variable' }).then(setData);
}, []);

return (

{data ? data : 'Loading...'}

);
}

export default App;

forge tunnel

forge tunnel

forge tunnel

import Resolver from '/resolver';

const resolver = new Resolver();

resolver.define('getText', (req) => {
console.log(req);

return 'Hello, world!';
});

export const handler = resolver.getDefinitions();

forge tunnel

version: 2
log_level: debug
region: us
authtoken:

$ ngrok config add-authtoken 2cFVRxxBHSpL7bOBStTSXOV0tcD_p3JYuv7MW8rneDQXZxKv

file.

# in ngrok.yml
authtoken: 2cFVRxxBHSpL7bOBStTSXOV0tcD_p3JYuv7MW8rneDQXZxKv

brew install ngrok/ngrok/ngrok

ngrok config add-authtoken 2cFVRxxBHSpL7bOBStTSXOV0tcD_p3JYuv7MW8rneDQXZxKv

ngrok http http://localhost:8080

ngrok http --domain=bursting-turkey-really.ngrok-free.app 80

Endpoint Id:

ep_2ewBsLJsg9WQxn7ktfXwvzCFi2V

bursting-turkey-really.ngrok-free.app

rd_2coZL6TjXyPJWuIBdmXP4BVP4Me

import ngrok

listener = ngrok.forward("localhost:8080", authtoken_from_env=True,
domain="example.ngrok.app")

print(f"Ingress established at: {listener.url()}");

import ngrok

listener = ngrok.forward("localhost:8080", authtoken_from_env=True,
basic_auth=["username1:password1", "username2:password2"])

print(f"Ingress established at: {listener.url()}");

import ngrok

listener = ngrok.forward("localhost:8080", authtoken_from_env=True,
circuit_breaker=0.5)

print(f"Ingress established at: {listener.url()}");

export NGROK_AUTHTOKEN=""
go mod init example.com/ngrok-circuit-breaker
go get golang.ngrok.com/ngrok
go run example.go

package main

import (
"context"
"fmt"
"log"
"net"
"net/http"
"net/url"
"os"

"golang.ngrok.com/ngrok"
"golang.ngrok.com/ngrok/config"
)

func main() {
l, err := ngrok.Listen(context.Background(),
config.HTTPEndpoint(
config.WithCircuitBreaker(0.1),
),
ngrok.WithAuthtokenFromEnv(),
)
if err != nil {
log.Fatal(err)
}
fmt.Println("Running at", l.URL())
go makeRequests(l.URL())
http.Serve(l, http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
if r.URL.Path == "/500" {
w.WriteHeader(500)
fmt.Fprintln(w, "Hello error!")
} else {
w.WriteHeader(200)
fmt.Fprintln(w, "Hello world!")
}
}))
}

func makeRequests(appURL string) {
// make sure we always dial the same IP addresss for testing purposes because
// circuit breaker state is applied on each ngrok edge server individually
u, _ := url.Parse(appURL)
addrs, err := net.LookupHost(u.Host)
if err != nil {
log.Fatal(err)
}
httpClient := http.Client{Transport: &http.Transport{
Dial: func(network, _ string) (net.Conn, error) {
return net.Dial(network, addrs[0]+":443")
},
}}

// make requests that return a 500 until the circuit opens
for {
resp, err := httpClient.Get(appURL + "/500")
if err != nil {
log.Fatal(err)
}
fmt.Printf("Status Code %d\n", resp.StatusCode)
if resp.StatusCode == 503 {
fmt.Println("Circuit opened")
break
}
}

// make requests that will eventually return a 200 which will close the circuit
for {
resp, err := httpClient.Get(appURL)
if err != nil {
log.Fatal(err)
}
fmt.Printf("Status Code %d\n", resp.StatusCode)
if resp.StatusCode != 503 {
fmt.Println("Circuit closed")
os.Exit(0)
}
}
}

import ngrok

listener = ngrok.forward("localhost:8080", authtoken_from_env=True,
compression=True)

print(f"Ingress established at: {listener.url()}");

mkdir test-dir
cd test-dir
echo "hello world" > t.txt

ngrok http file://`pwd` --domain your-domain.ngrok.app

curl --compressed -D - https://your-domain.ngrok.app/

HTTP/2 200
content-type: text/html; charset=utf-8
date: Tue, 18 Jul 2023 09:52:49 GMT
last-modified: Tue, 18 Jul 2023 09:52:34 GMT
ngrok-agent-ips: 71.227.75.230
ngrok-trace-id: 24e925dd0f348c1040d7ff62b06606cd
content-length: 39


t.txt


ngrok http file://`pwd` --domain your-domain.ngrok.app --compression

curl --compressed -D - https://your-domain.ngrok.app/

HTTP/2 200
content-encoding: deflate
content-type: text/html; charset=utf-8
date: Tue, 18 Jul 2023 10:03:22 GMT
last-modified: Tue, 18 Jul 2023 09:52:34 GMT
ngrok-agent-ips: 71.227.75.230
ngrok-trace-id: b6b6cdce029e94123188ce53c0febee4
vary: Accept-Encoding


t.txt


# Configure the ngrok provider
provider "ngrok" {
api_key = "{24yRd5U3DestCQapJrrVHLOqiAC_7RviwRqpd3wc9dKLujQZN
+
2f4BN4c0RgHDP7ZR6WF2UDZGpIf_3LYhHdKE1rtsm1CB7Mg3V +
2f4BtbvIwNt5sikocIhoak3XeGs_63LwML6ETjYJHSqsKe179}"
}

# Provision an ngrok domain
resource "ngrok_reserved_domain" "my_domain" {
name = "my-domain.example.com"
region = "us"
certificate_management_policy {
authority = "letsencrypt"
private_key_type = "ecdsa"
}
}

curl \
-X POST \
-H "Authorization: Bearer {24yRd5U3DestCQapJrrVHLOqiAC_7RviwRqpd3wc9dKLujQZN
+
2f4BN4c0RgHDP7ZR6WF2UDZGpIf_3LYhHdKE1rtsm1CB7Mg3V +
2f4BtbvIwNt5sikocIhoak3XeGs_63LwML6ETjYJHSqsKe179}" \
-H "Content-Type: application/json" \
-H "Ngrok-Version: 2" \
-d '{"metadata":"{\"incident_id\":1233122}","urls"😞"http://legit-facebook-login.ngrok.io/login"]}' \
https://api.ngrok.com/abuse_reports

curl \
-X GET \
-H "Authorization: Bearer {24yRd5U3DestCQapJrrVHLOqiAC_7RviwRqpd3wc9dKLujQZN
+
2f4BN4c0RgHDP7ZR6WF2UDZGpIf_3LYhHdKE1rtsm1CB7Mg3V +
2f4BtbvIwNt5sikocIhoak3XeGs_63LwML6ETjYJHSqsKe179}" \
-H "Ngrok-Version: 2" \
https://api.ngrok.com/abuse_reports/abrp_2cSjyxWkBf0QvB1vG6tgZEi2W8U

curl \
-X POST \
-H "Authorization: Bearer {24yRd5U3DestCQapJrrVHLOqiAC_7RviwRqpd3wc9dKLujQZN
+
2f4BN4c0RgHDP7ZR6WF2UDZGpIf_3LYhHdKE1rtsm1CB7Mg3V + 2f4BtbvIwNt5sikocIhoak3XeGs_63LwML6ETjYJHSqsKe179}" \
-H "Content-Type: application/json" \
-H "Ngrok-Version: 2" \
-d '{"description":"acme devices","domain":"connect.acme.com"}' \
https://api.ngrok.com/agent_ingresses

curl \
-X GET \
-H "Authorization: Bearer {24yRd5U3DestCQapJrrVHLOqiAC_7RviwRqpd3wc9dKLujQZN
+
2f4BN4c0RgHDP7ZR6WF2UDZGpIf_3LYhHdKE1rtsm1CB7Mg3V +
2f4BtbvIwNt5sikocIhoak3XeGs_63LwML6ETjYJHSqsKe179}" \
-H "Ngrok-Version: 2" \
https://api.ngrok.com/agent_ingresses/agin_2cSjz4KiqBvr9dEDroJe1IFLyDb

curl \
-X GET \
-H "Authorization: Bearer {24yRd5U3DestCQapJrrVHLOqiAC_7RviwRqpd3wc9dKLujQZN
+
2f4BN4c0RgHDP7ZR6WF2UDZGpIf_3LYhHdKE1rtsm1CB7Mg3V +
2f4BtbvIwNt5sikocIhoak3XeGs_63LwML6ETjYJHSqsKe179}" \
-H "Ngrok-Version: 2" \
https://api.ngrok.com/agent_ingresses

curl \
-X GET \
-H "Authorization: Bearer {24yRd5U3DestCQapJrrVHLOqiAC_7RviwRqpd3wc9dKLujQZN
+
2f4BN4c0RgHDP7ZR6WF2UDZGpIf_3LYhHdKE1rtsm1CB7Mg3V +
2f4BtbvIwNt5sikocIhoak3XeGs_63LwML6ETjYJHSqsKe179}" \
-H "Ngrok-Version: 2" \
https://api.ngrok.com/tunnels/tn_2cSjxbTveHCT9NR4ascMRVlFS5j

ngrok config check

api_key: 24yRd5U3DestCQapJrrVHLOqiAC_7RviwRqpd3wc9dKLujQZN
+
2f4BN4c0RgHDP7ZR6WF2UDZGpIf_3LYhHdKE1rtsm1CB7Mg3V
+

2f4BtbvIwNt5sikocIhoak3XeGs_63LwML6ETjYJHSqsKe179

forge tunnel

Tunnel redirects requests you make to your local machine. This occurs for any
Atlassian site where your app is installed in the specific development
environment. You will not see requests from other users.
Press Ctrl+C to cancel.

Checking Docker image... 100%
Your Docker image is up to date.

Reloading code...

=== Running forge lint...
No issues found.

=== Bundling code...
App code bundled.

=== Snapshotting functions...
No log output.

App code reloaded.

Listening for requests...

INFO 17:34:04.955 Count of objects in test array: 0

our manifest.yml file, under the resource your server is hosting:
1
2
tunnel:
port:
For example, a resources definition might look like this:
1
2
3
4
5
resources:
- key: main
path: static/hello-world/build
tunnel:
port: 3000

ngrok config check

authtoken: 4nq9771bPxe8ctg7LKr_2ClH7Y15Zqe4bWLWF9p
api_key: 24yRd5U3DestCQapJrrVHLOqiAC_7RviwRqpd3wc9dKLujQZN
connect_timeout: 30s
console_ui: true
console_ui_color: transparent
dns_resolver_ips:
- 1.1.1.1
- 8.8.8.8
heartbeat_interval: 1m
heartbeat_tolerance: 5s
inspect_db_size: 104857600 # 100mb
inspect_db_size: 50000000
log_level: info
log_format: json
log: /var/log/ngrok.log
metadata: '{"serial": "00012xa-33rUtz9", "comment": "For customer [email protected]"}'
proxy_url: socks5://localhost:9150
remote_management: false
root_cas: trusted
update_channel: stable
update_check: false
version: 2
web_addr: localhost:4040
tunnels:
website:
addr: 8888
basic_auth:
- "bob:bobpassword"
schemes:
- https
host_header: "myapp.ngrok.dev"
inspect: false
proto: http
domain: myapp.ngrok.dev

e2etls:
addr: 9000
proto: tls
domain: myapp.example.com
crt: example.crt
key: example.key

policyenforced:
policy:
inbound:
- name: LimitIPs
expressions:
- "conn.ClientIP != '1.1.1.1'"
actions:
- type: deny
addr: 8000
proto: tcp

ssh-access:
addr: 22
proto: tcp
remote_addr: 1.tcp.ngrok.io:12345

my-load-balanced-website:
labels:
- env=prod
- team=infra
addr: 8000

tunnels:
httpbin:
proto: http
addr: 8000
domain: alan-httpbin.ngrok.dev
demo:
proto: http
addr: 9090
domain: demo.inconshreveable.com
inspect: false

ngrok start httpbin

authtoken: 4nq9771bPxe8ctg7LKr_2ClH7Y15Zqe4bWLWF9p

import ngrok

def load_file(name):
with open(name, "r") as crt:
return bytearray(crt.read().encode())

listener = ngrok.forward("localhost:8080", authtoken_from_env=True,
proto="tls",
domain="app.example.com",
crt=load_file("/path/to/app-example-com-crt.pem"),
key=load_file("/path/to/app-example-com-key.pem"))

print(f"Ingress established at: {listener.url()}");
Grateful's Actual Bot user:

ak_2f4BN4c0RgHDP7ZR6WF2UDZGpIf

ak_2f4BN4c0RgHDP7ZR6WF2UDZGpIf

bot_2bOqWXrxi75KWEKeNbXsIn2wpD7

https://dashboard.ngrok.com/api/new

ngrok is the fastest way to put anything on the internet with a single command.

Clearance file!
04/03/2024

Clearance file!

29/01/2024
29/01/2024

January 29, 1961
Radio Hanoi announced in a English-language broadcast that the National Liberation Front of South Vietnam, popularly known as the Viet Cong, had been formed to overthrow the government there and to establish a regime similar to that in Communist North Vietnam.⠀

15/01/2024

"I have a dream that one day this nation will rise up and live out the true meaning of its creed: 'We hold these truths to be self-evident, that all men are created equal.'" —Martin Luther King, Jr.

-----BEGIN PGP PUBLIC KEY BLOCK-----mQINBFUwGHYBEAC0wpGpBPkd8W1UdQjg9+cEFzeIEJRaoZoeuJD8mofwI5EjnjdtkCpUYEDal0ygkKobu8Sz...
11/01/2024

-----BEGIN PGP PUBLIC KEY BLOCK-----
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
7Tz8SQkuxltX/yBXMV3Ddy0t6nWV2SZEfuxJAQI=
=spg4
-----END PGP PUBLIC KEY BLOCK-----

10/01/2024

Upgrade to iCloud+ (Plus) to get more storage and premium features like iCloud Private Relay, Hide My Email, and HomeKit Secure Video.

//------------------------------------------------------------------------------/*    This file is part of rippled: http...
08/01/2024

//------------------------------------------------------------------------------
/*
This file is part of rippled: https://github.com/ripple/rippled
Copyright (c) 2012, 2013 Ripple Labs Inc.

Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the above
copyright notice and this permission notice appear in all copies.

THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
ANY SPECIAL , DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
//==============================================================================

RIPPLE_PROTOCOL_HASHPREFIX_H_INCLUDED
RIPPLE_PROTOCOL_HASHPREFIX_H_INCLUDED




namespace ripple {

namespace detail {

constexpr std::uint32_t
make_hash_prefix(char a, char b, char c)
{
return (static_cast(a)

Decentralized cryptocurrency blockchain daemon implementing the XRP Ledger protocol in C++ - GitHub - XRPLF/rippled: Decentralized cryptocurrency blockchain daemon implementing the XRP Ledger proto...

02/12/2023

Swagger UI
Explore
Decoder API
3.0.0
OAS3
https://gaia.esac.esa.int/decoder/rest/openapi.json
API for accessing to Decoder services

Contact the developer
GNU Lesser General Public License 2.1
Servers

default

GET
/rest/coordconver/decode
Apply coordinate transformations.
Apply coordinate transformations for the input coordiantes. Make use of /coordconver/coordunits and /coordconver/refsystems to find out the allowed coordinate units and reference system, respectively If finalhealpixorder is not used, it will set to the initial value inithealpixorder.

Parameters
Cancel
Name Description
rad *
string
(query)
The right ascension.

dec *
string
(query)
The declination.

refsystem *
string
(query)
The reference sytem: ICRS, Ecliptic or Galactic. See also https://gaia.esac.esa.int/decoder/rest/coordconver/refsystems

coordunit *
string
(query)
The coordinate units: rads, degrees or Deg:Min:sec. See also https://gaia.esac.esa.int/decoder/rest/coordconver/coordunits

inithealpixorder *
string
(query)
The initial healpix order: values in the range [0, 29]

finalhealpixorder
string
(query)
The final healpix order: values in the range [0, 29]. Default value is the initial healpix order.

Execute
Responses
Code Description Links
400
Invalid parameter supplied

No links
default
Media type

Controls Accept header.
Example Value
Schema
{
"coordinateTransformationResultResultList": [
{
"ra": 0,
"dec": 0,
"raRad": 0,
"decRad": 0,
"systemType": "ICRS",
"coordUnitType": "RADIAN",
"initialOrder": 0,
"finalOrder": 0,
"htmlElements": [
{
"coordinateSystemName": "string",
"ra": 0,
"dec": 0,
"raRad": 0,
"decRad": 0,
"radDMS": "string",
"decDMS": "string",
"result": {
"additionalProp1": 0,
"additionalProp2": 0,
"additionalProp3": 0
}
}
]
}
],
"creationDate": "string",
"decoderVersion": "string",
"decoderSvnRevision": "string"
}
No links

GET
/rest/coordconver/coordunits
Provide the allowed coordinates units.
Use this resorce in order to know the allowed coordinate units than can be used in /coordconver/decode

Parameters
Cancel
No parameters
Execute
Clear
Responses
Curl

curl -X 'GET' \
'https://gaia.esac.esa.int/decoder/rest/coordconver/coordunits' \
-H 'accept: text/plain;charset=utf-8'
Request URL
https://gaia.esac.esa.int/decoder/rest/coordconver/coordunits
Server response
Code Details
200
Response body
Download
RADIAN
DEGREE
SEXAGESIMAL

Response headers
connection: close
content-length: 26
content-type: text/plain;charset=utf-8
date: Sat,02 Dec 2023 08:36:41 GMT
server: Apache
Responses
Code Description Links
default
default response

Media type

Controls Accept header.
Example Value
Schema
string
No links

GET
/rest/coordconver/refsystems
Provide the allowed reference systems.
Use this resorce in order to know the allowed reference systems than can be used in /coordconver/decode

Parameters
Try it out
No parameters
Responses
Code Description Links
default
default response

Media type

Controls Accept header.
Example Value
Schema
string
No links

GET
/rest/obmt/decode
Apply time transformations.
Apply time transformation to the input value. Make use of /coordconver/unittypes to find out the allowed time units. For TCB/UTC types used the format YYY-MM-DDTHH:MM:SS.SS

Parameters
Cancel
Name Description
value *
string
(query)
The input value

unittype *
string
(query)
The time units. Valid values: OBT_0 OBT_1 OBMT50 OBMT OBMT_REV OBMT_DAYS OBMT_SECS UTC_DATE UTC_NS_2010 UTC_NS_1970 TCB_DATE TCB_NS_2010 JULIAN_YEAR JULIAN_DAY See also https://gaia.esac.esa.int/decoder/rest/obmt/unittypes

Execute
Clear
Responses
Curl

curl -X 'GET' \
'https://gaia.esac.esa.int/decoder/rest/obmt/decode?value=004v&unittype=MIB%20Units' \
-H 'accept: application/xml;charset=utf-8'
Request URL
https://gaia.esac.esa.int/decoder/rest/obmt/decode?value=004v&unittype=MIB%20Units
Server response
Code Details
200
Response body
Download



0
0
0.0
0.0
0.0
0
0.0
0.0
004v
false
0

1582456717113819409
2023-12-02T08:38:14.881575
22.4.1-RC
775748

Response headers
connection: close
content-length: 572
content-type: application/xml;charset=utf-8
date: Sat,02 Dec 2023 08:38:27 GMT
server: Apache
Responses
Code Description Links
400
Invalid parameter supplied

No links
default
Media type

Controls Accept header.
Example Value
Schema



0
0
0
0
0
string
string
0
OBT_0
0
0
string
OBMT
0
true
string

0
string
string
string

No links

GET
/rest/obmt/unittypes
Provide the allowed time units.
Use this resorce in order to know the allowed time units than can be used in /obmt/decode

Parameters
Cancel
No parameters
Execute
Clear
Responses
Curl

curl -X 'GET' \
'https://gaia.esac.esa.int/decoder/rest/obmt/unittypes' \
-H 'accept: text/plain;charset=utf-8'
Request URL
https://gaia.esac.esa.int/decoder/rest/obmt/unittypes
Server response
Code Details
200
Response body
Download
OBMT
OBMT50
OBMT_REV
OBMT_DAYS
OBMT_SECS
UTC_DATE
UTC_NS_2010
UTC_NS_1970
TCB_DATE
TCB_NS_2010
JULIAN_YEAR
JULIAN_DAY
OBT_0
OBT_1

Response headers
connection: close
content-length: 130
content-type: text/plain;charset=utf-8
date: Sat,02 Dec 2023 08:42:31 GMT
server: Apache
Responses
Code Description Links
default
default response

Media type

Controls Accept header.
Example Value
Schema
string
No links

GET
/rest/scet/decode
Apply spacecraft-elapsed time transformations.
Apply spacecraft-elapsed time (SCET) transformation to the input value. Make use of /coordconver/unittypes to find out the allowed time units.

Parameters
Cancel
Name Description
value *
string
(query)
The scet value.

unittype *
string
(query)
The time units: SCET-50NS SCET-NS SCET-MICROSECS SCET-DAYS SCET-SECS See also https://gaia.esac.esa.int/decoder/rest/scet/unittypes

Execute
Clear
Responses
Curl

curl -X 'GET' \
'https://gaia.esac.esa.int/decoder/rest/scet/decode?value=20%25&unittype=Men%20In%20Black%20Units' \
-H 'accept: application/xml;charset=utf-8'
Request URL
https://gaia.esac.esa.int/decoder/rest/scet/decode?value=20%25&unittype=Men%20In%20Black%20Units
Server response
Code Details
400
Error: response status is 400

Response body
Download
HTTP Status 400 – Bad Requestbody {font-family:Tahoma,Arial,sans-serif;} h1, h2, h3, b {color:white;background-color: ;} h1 {font-size:22px;} h2 {font-size:16px;} h3 {font-size:14px;} p {font-size:12px;} a {color:black;} .line {height:1px;background-color: ;border:none;}HTTP Status 400 – Bad RequestType Status ReportMessage Bad RequestDescription The server cannot or will not process the request due to something that is perceived to be a client error (e.g., malformed request syntax, invalid request message framing, or deceptive request routing).Apache Tomcat/10.1.13
Response headers
connection: close
content-language: en
content-length: 796
content-type: text/html;charset=utf-8
date: Sat,02 Dec 2023 08:45:05 GMT
server: Apache
Responses
Code Description Links
400
Invalid parameter supplied

No links
default
Media type

Controls Accept header.
Example Value
Schema



0
0
0
0
0
string

string
string
string

No links

GET
/rest/scet/unittypes
Provide the allowed time units.
Use this resorce in order to know the allowed time units than can be used in /scet/decode

Parameters
Cancel
No parameters
Execute
Clear
Responses
Curl

curl -X 'GET' \
'https://gaia.esac.esa.int/decoder/rest/scet/unittypes' \
-H 'accept: text/plain;charset=utf-8'
Request URL
https://gaia.esac.esa.int/decoder/rest/scet/unittypes
Server response
Code Details
200
Response body
Download
SCET-50NS
SCET-NS
SCET-MICROSECS
SCET-DAYS
SCET-SECS

Response headers
connection: close
content-length: 53
content-type: text/plain;charset=utf-8
date: Sat,02 Dec 2023 08:46:53 GMT
server: Apache
Responses
Code Description Links
default
default response

Media type

Controls Accept header.
Example Value
Schema
string
No links

GET
/rest/solutionid/decode
Decode the solution id.

POST
/rest/solutionid/decodebyfile
Decode the list solution ids contained in the input file. The file will contain a single column without a header, where each row is a solution id or a set of solution Ids separated by commas.

GET
/rest/sourceid/decode
Decode the source id.

Address

IL

Alerts

Be the first to know and let us send you an email when Mantis Aliens posts news and promotions. Your email address will not be used for any other purpose, and you can unsubscribe at any time.

Contact The Business

Send a message to Mantis Aliens:

Videos

Shortcuts

  • Address
  • Telephone
  • Alerts
  • Contact The Business
  • Videos
  • Claim ownership or report listing
  • Want your business to be the top-listed Media Company?

Share