trailer_vote-fixtures 0.1.0 → 1.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/.gitignore +12 -8
- data/.npmignore +25 -0
- data/.travis.yml +69 -7
- data/Gemfile +6 -6
- data/Gemfile.lock +3 -2
- data/README.md +9 -37
- data/Rakefile +10 -10
- data/bin/console +14 -14
- data/bin/setup +8 -8
- data/lib/trailer_vote/fixtures.rb +15 -15
- data/lib/trailer_vote/fixtures/application/vnd.trailervote.issue.v1.index+json +1162 -0
- data/lib/trailer_vote/fixtures/index.js +3 -0
- data/lib/trailer_vote/fixtures/main.mjs +9 -0
- data/lib/trailer_vote/fixtures/version.rb +5 -5
- data/package.json +17 -0
- data/ruby/README.md +37 -0
- data/trailer_vote-fixtures.gemspec +33 -31
- data/yarn.lock +33 -0
- metadata +10 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 2d06ce357f42d85bd31ad7ad41316351efd40dc3aff8dd16c637eafbd4ed2eaa
|
4
|
+
data.tar.gz: 818513cfbf5fce0c5ed1b6cd54090afe8da7462dd99f0b28cc79eb7e5315d2f1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b143247caf31c4d5eb8cc0742727f4df6d3fba57e288a0819c64a1e46d259c2e5802f154198d5dfeeddf1adbe0a1be26225e110045bdc59054cdba44a92557f7
|
7
|
+
data.tar.gz: dccc9c65a9720717c4d4790ff3912ea3aebd5064998c15dcc9f519fead8aa06cf9545a183ff3fedd916ba80f42f94db6e0d03da75cfca312769ad210fb516527
|
data/.gitignore
CHANGED
data/.npmignore
ADDED
@@ -0,0 +1,25 @@
|
|
1
|
+
# Ruby
|
2
|
+
/.bundle/
|
3
|
+
/.yardoc
|
4
|
+
/_yardoc/
|
5
|
+
/coverage/
|
6
|
+
/doc/
|
7
|
+
/pkg/
|
8
|
+
/spec/reports/
|
9
|
+
/tmp/
|
10
|
+
/bin/
|
11
|
+
/test/
|
12
|
+
/lib/trailer_vote/fixtures.rb
|
13
|
+
/lib/trailer_vote/fixtures/version.rb
|
14
|
+
**/*.rb
|
15
|
+
/ruby/
|
16
|
+
.travis.yml
|
17
|
+
Gemfile
|
18
|
+
Gemfile.lock
|
19
|
+
Rakefile
|
20
|
+
trailer_vote-fixtures.gemspec
|
21
|
+
|
22
|
+
# JavaScript
|
23
|
+
/node_modules/
|
24
|
+
|
25
|
+
|
data/.travis.yml
CHANGED
@@ -1,7 +1,69 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
before_install:
|
1
|
+
sudo: false
|
2
|
+
matrix:
|
3
|
+
include:
|
4
|
+
- language: ruby
|
5
|
+
cache: bundler
|
6
|
+
rvm: 2.4
|
7
|
+
before_install:
|
8
|
+
- gem update --system
|
9
|
+
- gem --version
|
10
|
+
install:
|
11
|
+
- bundle install --with development --jobs=3 --retry=3 --path=${BUNDLE_PATH:-vendor/bundle}
|
12
|
+
|
13
|
+
- language: ruby
|
14
|
+
cache: bundler
|
15
|
+
rvm: 2.5
|
16
|
+
before_install:
|
17
|
+
- gem update --system
|
18
|
+
- gem --version
|
19
|
+
install:
|
20
|
+
- bundle install --with development --jobs=3 --retry=3 --path=${BUNDLE_PATH:-vendor/bundle}
|
21
|
+
|
22
|
+
- language: ruby
|
23
|
+
cache: bundler
|
24
|
+
rvm: 2.6
|
25
|
+
before_install:
|
26
|
+
- gem update --system
|
27
|
+
- gem --version
|
28
|
+
install:
|
29
|
+
- bundle install --with development --jobs=3 --retry=3 --path=${BUNDLE_PATH:-vendor/bundle}
|
30
|
+
|
31
|
+
- language: ruby
|
32
|
+
cache: bundler
|
33
|
+
rvm: rbx-3
|
34
|
+
before_install:
|
35
|
+
- gem update --system
|
36
|
+
- gem --version
|
37
|
+
install:
|
38
|
+
- bundle install --with development --jobs=3 --retry=3 --path=${BUNDLE_PATH:-vendor/bundle}
|
39
|
+
|
40
|
+
- language: ruby
|
41
|
+
cache: bundler
|
42
|
+
rvm: ruby-head
|
43
|
+
before_install:
|
44
|
+
- gem update --system
|
45
|
+
- gem --version
|
46
|
+
install:
|
47
|
+
- bundle install --with development --jobs=3 --retry=3 --path=${BUNDLE_PATH:-vendor/bundle}
|
48
|
+
|
49
|
+
- language: node_js
|
50
|
+
cache: yarn
|
51
|
+
node_js: node
|
52
|
+
|
53
|
+
- language: node_js
|
54
|
+
cache: yarn
|
55
|
+
node_js: iojs
|
56
|
+
|
57
|
+
- language: node_js
|
58
|
+
cache: yarn
|
59
|
+
node_js: lts/*
|
60
|
+
|
61
|
+
allow_failures:
|
62
|
+
- language: ruby
|
63
|
+
rvm: ruby-head
|
64
|
+
- language: ruby
|
65
|
+
rvm: rbx-3
|
66
|
+
- language: ruby
|
67
|
+
rvm: 2.6
|
68
|
+
- language: node_js
|
69
|
+
node_js: iojs
|
data/Gemfile
CHANGED
@@ -1,6 +1,6 @@
|
|
1
|
-
source 'https://rubygems.org'
|
2
|
-
|
3
|
-
git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
|
4
|
-
|
5
|
-
# Specify your gem's dependencies in trailer_vote-fixtures.gemspec
|
6
|
-
gemspec
|
1
|
+
source 'https://rubygems.org'
|
2
|
+
|
3
|
+
git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
|
4
|
+
|
5
|
+
# Specify your gem's dependencies in trailer_vote-fixtures.gemspec
|
6
|
+
gemspec
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
trailer_vote-fixtures (
|
4
|
+
trailer_vote-fixtures (1.2.0)
|
5
5
|
|
6
6
|
GEM
|
7
7
|
remote: https://rubygems.org/
|
@@ -21,6 +21,7 @@ GEM
|
|
21
21
|
ruby-progressbar (1.10.0)
|
22
22
|
|
23
23
|
PLATFORMS
|
24
|
+
ruby
|
24
25
|
x64-mingw32
|
25
26
|
|
26
27
|
DEPENDENCIES
|
@@ -33,4 +34,4 @@ DEPENDENCIES
|
|
33
34
|
trailer_vote-fixtures!
|
34
35
|
|
35
36
|
BUNDLED WITH
|
36
|
-
1.16.
|
37
|
+
1.16.6
|
data/README.md
CHANGED
@@ -1,37 +1,9 @@
|
|
1
|
-
# TrailerVote
|
2
|
-
[![Build Status](https://travis-ci.com/TrailerVote/trailervote-fixtures.svg?branch=master)](https://travis-ci.com/TrailerVote/trailervote-fixtures)
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
gem 'trailer_vote-fixtures'
|
11
|
-
```
|
12
|
-
|
13
|
-
And then execute:
|
14
|
-
|
15
|
-
$ bundle
|
16
|
-
|
17
|
-
Or install it yourself as:
|
18
|
-
|
19
|
-
$ gem install trailer_vote-fixtures
|
20
|
-
|
21
|
-
## Usage
|
22
|
-
|
23
|
-
```ruby
|
24
|
-
require 'trailer_vote/fixtures'
|
25
|
-
TrailerVote::Fixtures.load('application/vnd.trailervote.errors.v1+json')
|
26
|
-
# => { "errors" => [...] }
|
27
|
-
```
|
28
|
-
|
29
|
-
## Development
|
30
|
-
|
31
|
-
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake test` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
32
|
-
|
33
|
-
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
34
|
-
|
35
|
-
## Contributing
|
36
|
-
|
37
|
-
Bug reports and pull requests are welcome on GitHub at [TrailerVote/trailervote-fixtures](https://github.com/TrailerVote/trailervote-fixtures).
|
1
|
+
# TrailerVote Fixtures
|
2
|
+
[![Build Status](https://travis-ci.com/TrailerVote/trailervote-fixtures.svg?branch=master)](https://travis-ci.com/TrailerVote/trailervote-fixtures)
|
3
|
+
|
4
|
+
Packages that provide fixtures for defined mediatypes. This is a monorepo holding packages for several ecosystems and languages.
|
5
|
+
|
6
|
+
| language | package | latest | install |
|
7
|
+
|----------|---------|--------|---------|
|
8
|
+
| ruby | [trailer_vote-fixtures](./ruby) | [![Gem Version](https://badge.fury.io/rb/trailer_vote-fixtures.svg)](https://badge.fury.io/rb/trailer_vote-fixtures) | `gem install trailer_vote-fixtures` |
|
9
|
+
| javascript | [@trailervote/fixtures](./javascript) | [![NPM Package Version](https://badge.fury.io/js/@trailervote%2Ffixtures.svg)](https://npmjs.org/package/@trailervote/fixtures) | `yarn add @trailervote/fixtures` |
|
data/Rakefile
CHANGED
@@ -1,10 +1,10 @@
|
|
1
|
-
require 'bundler/gem_tasks'
|
2
|
-
require 'rake/testtask'
|
3
|
-
|
4
|
-
Rake::TestTask.new(:test) do |t|
|
5
|
-
t.libs << 'test'
|
6
|
-
t.libs << 'lib'
|
7
|
-
t.test_files = FileList['test/**/*_test.rb']
|
8
|
-
end
|
9
|
-
|
10
|
-
task :default => :test
|
1
|
+
require 'bundler/gem_tasks'
|
2
|
+
require 'rake/testtask'
|
3
|
+
|
4
|
+
Rake::TestTask.new(:test) do |t|
|
5
|
+
t.libs << 'test'
|
6
|
+
t.libs << 'lib'
|
7
|
+
t.test_files = FileList['test/**/*_test.rb']
|
8
|
+
end
|
9
|
+
|
10
|
+
task :default => :test
|
data/bin/console
CHANGED
@@ -1,14 +1,14 @@
|
|
1
|
-
#!/usr/bin/env ruby
|
2
|
-
|
3
|
-
require "bundler/setup"
|
4
|
-
require "trailer_vote/fixtures"
|
5
|
-
|
6
|
-
# You can add fixtures and/or initialization code here to make experimenting
|
7
|
-
# with your gem easier. You can also use a different console, if you like.
|
8
|
-
|
9
|
-
# (If you use this, don't forget to add pry to your Gemfile!)
|
10
|
-
# require "pry"
|
11
|
-
# Pry.start
|
12
|
-
|
13
|
-
require "irb"
|
14
|
-
IRB.start(__FILE__)
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "trailer_vote/fixtures"
|
5
|
+
|
6
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
7
|
+
# with your gem easier. You can also use a different console, if you like.
|
8
|
+
|
9
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
10
|
+
# require "pry"
|
11
|
+
# Pry.start
|
12
|
+
|
13
|
+
require "irb"
|
14
|
+
IRB.start(__FILE__)
|
data/bin/setup
CHANGED
@@ -1,8 +1,8 @@
|
|
1
|
-
#!/usr/bin/env bash
|
2
|
-
set -euo pipefail
|
3
|
-
IFS=$'\n\t'
|
4
|
-
set -vx
|
5
|
-
|
6
|
-
bundle install
|
7
|
-
|
8
|
-
# Do any other automated setup that you need to do here
|
1
|
+
#!/usr/bin/env bash
|
2
|
+
set -euo pipefail
|
3
|
+
IFS=$'\n\t'
|
4
|
+
set -vx
|
5
|
+
|
6
|
+
bundle install
|
7
|
+
|
8
|
+
# Do any other automated setup that you need to do here
|
@@ -1,15 +1,15 @@
|
|
1
|
-
require 'trailer_vote/fixtures/version'
|
2
|
-
require 'oj'
|
3
|
-
|
4
|
-
module TrailerVote
|
5
|
-
module Fixtures
|
6
|
-
FIXTURE_DIRECTORY = File.expand_path(File.join(__dir__, 'fixtures')).freeze
|
7
|
-
|
8
|
-
module_function
|
9
|
-
|
10
|
-
def load(media_type, options = Oj.default_options)
|
11
|
-
path = File.join(FIXTURE_DIRECTORY, *media_type.split('/'))
|
12
|
-
Oj.load_file(path, options)
|
13
|
-
end
|
14
|
-
end
|
15
|
-
end
|
1
|
+
require 'trailer_vote/fixtures/version'
|
2
|
+
require 'oj'
|
3
|
+
|
4
|
+
module TrailerVote
|
5
|
+
module Fixtures
|
6
|
+
FIXTURE_DIRECTORY = File.expand_path(File.join(__dir__, 'fixtures')).freeze
|
7
|
+
|
8
|
+
module_function
|
9
|
+
|
10
|
+
def load(media_type, options = Oj.default_options)
|
11
|
+
path = File.join(FIXTURE_DIRECTORY, *media_type.split('/'))
|
12
|
+
Oj.load_file(path, options)
|
13
|
+
end
|
14
|
+
end
|
15
|
+
end
|
@@ -0,0 +1,1162 @@
|
|
1
|
+
{
|
2
|
+
"issues": {
|
3
|
+
"_index": [
|
4
|
+
{
|
5
|
+
"href": "https://fake.trailervote.com/api/issues/b5ccc6a7-7391-4713-bbd8-9d6b3ede8650"
|
6
|
+
},
|
7
|
+
{
|
8
|
+
"href": "https://fake.trailervote.com/api/issues/d6fa8f21-414d-45ba-bc5d-3da775cee5cb"
|
9
|
+
},
|
10
|
+
{
|
11
|
+
"href": "https://fake.trailervote.com/api/issues/5cf29dc7-5eb1-4553-8628-36bc66545532"
|
12
|
+
},
|
13
|
+
{
|
14
|
+
"href": "https://fake.trailervote.com/api/issues/1baf2281-c779-4bdc-adfb-e2dd94595fb5"
|
15
|
+
},
|
16
|
+
{
|
17
|
+
"href": "https://fake.trailervote.com/api/issues/d2f4e622-aa77-4fed-8526-d1ca68746b8e"
|
18
|
+
},
|
19
|
+
{
|
20
|
+
"href": "https://fake.trailervote.com/api/issues/be69fc66-d1c6-4c70-a130-506193b4e592"
|
21
|
+
},
|
22
|
+
{
|
23
|
+
"href": "https://fake.trailervote.com/api/issues/1654f652-0925-4b92-88f6-34d5d9addd7c"
|
24
|
+
},
|
25
|
+
{
|
26
|
+
"href": "https://fake.trailervote.com/api/issues/c566964e-d46e-4a8e-96a6-102df4c35d17"
|
27
|
+
},
|
28
|
+
{
|
29
|
+
"href": "https://fake.trailervote.com/api/issues/6ac7ccc8-7385-44e3-a929-509df516abed"
|
30
|
+
},
|
31
|
+
{
|
32
|
+
"href": "https://fake.trailervote.com/api/issues/e4bc3aa8-4dc2-41f8-987c-65e3995fab3a"
|
33
|
+
},
|
34
|
+
{
|
35
|
+
"href": "https://fake.trailervote.com/api/issues/060dbc0f-61fb-4d25-a9c1-894cbdbd1fea"
|
36
|
+
},
|
37
|
+
{
|
38
|
+
"href": "https://fake.trailervote.com/api/issues/d2bfa0cf-734b-45d3-9f08-02a823a2eff6"
|
39
|
+
},
|
40
|
+
{
|
41
|
+
"href": "https://fake.trailervote.com/api/issues/7c81b24d-5408-448a-9bfa-e51a82cbd087"
|
42
|
+
},
|
43
|
+
{
|
44
|
+
"href": "https://fake.trailervote.com/api/issues/e9388d3b-5589-4aa9-b839-2757240dac9d"
|
45
|
+
},
|
46
|
+
{
|
47
|
+
"href": "https://fake.trailervote.com/api/issues/30930dfe-f557-4f54-8f2b-8325d9f3f8f0"
|
48
|
+
},
|
49
|
+
{
|
50
|
+
"href": "https://fake.trailervote.com/api/issues/ae3bdd65-c3c2-446f-95ec-361a8f72fba4"
|
51
|
+
},
|
52
|
+
{
|
53
|
+
"href": "https://fake.trailervote.com/api/issues/150a1957-0a76-46e4-aa88-dec08f6d5d9b"
|
54
|
+
},
|
55
|
+
{
|
56
|
+
"href": "https://fake.trailervote.com/api/issues/1e5fc526-d73a-4e72-a0ea-6aaf793367b3"
|
57
|
+
},
|
58
|
+
{
|
59
|
+
"href": "https://fake.trailervote.com/api/issues/1e24379f-0f4e-4792-bf5c-344ef1c76915"
|
60
|
+
},
|
61
|
+
{
|
62
|
+
"href": "https://fake.trailervote.com/api/issues/dc5d932d-1c1a-4471-9250-e0f0a95055a9"
|
63
|
+
},
|
64
|
+
{
|
65
|
+
"href": "https://fake.trailervote.com/api/issues/cbcbeebd-5e02-49b9-a019-3e247f865936"
|
66
|
+
},
|
67
|
+
{
|
68
|
+
"href": "https://fake.trailervote.com/api/issues/631959e6-435b-49a2-8552-d88f149792c1"
|
69
|
+
},
|
70
|
+
{
|
71
|
+
"href": "https://fake.trailervote.com/api/issues/45f61b0a-28d2-4a89-b731-d8019e7fd5df"
|
72
|
+
},
|
73
|
+
{
|
74
|
+
"href": "https://fake.trailervote.com/api/issues/1dfa0084-a3ed-45fe-871f-11594d4e8483"
|
75
|
+
},
|
76
|
+
{
|
77
|
+
"href": "https://fake.trailervote.com/api/issues/f687c62d-4db2-4424-8a14-5c2aea094d23"
|
78
|
+
},
|
79
|
+
{
|
80
|
+
"href": "https://fake.trailervote.com/api/issues/2cae1129-4c62-497b-b830-01dc58e157d7"
|
81
|
+
},
|
82
|
+
{
|
83
|
+
"href": "https://fake.trailervote.com/api/issues/ff1eaff1-3eb4-49f4-a6ad-5f11f8a7f268"
|
84
|
+
},
|
85
|
+
{
|
86
|
+
"href": "https://fake.trailervote.com/api/issues/157262e9-5216-4d76-b486-e187c54c633a"
|
87
|
+
},
|
88
|
+
{
|
89
|
+
"href": "https://fake.trailervote.com/api/issues/a00a465f-1277-4d84-8a05-d4e4e5ea4bb6"
|
90
|
+
},
|
91
|
+
{
|
92
|
+
"href": "https://fake.trailervote.com/api/issues/e25bbe70-b8e9-4242-be41-51685140d6c5"
|
93
|
+
},
|
94
|
+
{
|
95
|
+
"href": "https://fake.trailervote.com/api/issues/f45879d0-20c6-48c4-bc10-24c0210969b0"
|
96
|
+
},
|
97
|
+
{
|
98
|
+
"href": "https://fake.trailervote.com/api/issues/c2327484-42cb-4799-a276-69ed1b3a7f1e"
|
99
|
+
},
|
100
|
+
{
|
101
|
+
"href": "https://fake.trailervote.com/api/issues/c41cddfb-ec61-4c21-a595-68726d44cf8a"
|
102
|
+
},
|
103
|
+
{
|
104
|
+
"href": "https://fake.trailervote.com/api/issues/4f5e2759-4f2b-4af8-80d1-5cbe06fb33d2"
|
105
|
+
},
|
106
|
+
{
|
107
|
+
"href": "https://fake.trailervote.com/api/issues/fd36d2ae-c739-4650-83fe-517b1dde88ab"
|
108
|
+
},
|
109
|
+
{
|
110
|
+
"href": "https://fake.trailervote.com/api/issues/eefa44cd-609f-4d4d-962c-beebc9242c50"
|
111
|
+
},
|
112
|
+
{
|
113
|
+
"href": "https://fake.trailervote.com/api/issues/1b4fa0ba-374f-42ad-b403-f5b1b82734c8"
|
114
|
+
},
|
115
|
+
{
|
116
|
+
"href": "https://fake.trailervote.com/api/issues/dd396e92-5a44-499d-8d5f-ec5e91c53c8b"
|
117
|
+
},
|
118
|
+
{
|
119
|
+
"href": "https://fake.trailervote.com/api/issues/7a2f5801-5fb7-45e7-addb-37dc7b0d340f"
|
120
|
+
},
|
121
|
+
{
|
122
|
+
"href": "https://fake.trailervote.com/api/issues/879918ce-ee75-43b8-99c8-76d8df4a7948"
|
123
|
+
},
|
124
|
+
{
|
125
|
+
"href": "https://fake.trailervote.com/api/issues/b14d9a26-c16f-415c-a76f-a511eba231fa"
|
126
|
+
},
|
127
|
+
{
|
128
|
+
"href": "https://fake.trailervote.com/api/issues/e80aef0d-dd2d-484e-861c-150bceb16a7d"
|
129
|
+
},
|
130
|
+
{
|
131
|
+
"href": "https://fake.trailervote.com/api/issues/86945a81-8e2f-4da5-be17-31f2fa6d292b"
|
132
|
+
},
|
133
|
+
{
|
134
|
+
"href": "https://fake.trailervote.com/api/issues/8d7d4d91-a1b7-4ec2-b541-7ade6cf9d640"
|
135
|
+
},
|
136
|
+
{
|
137
|
+
"href": "https://fake.trailervote.com/api/issues/c0f4cd3d-e692-4a20-9171-b19b4a4f6523"
|
138
|
+
},
|
139
|
+
{
|
140
|
+
"href": "https://fake.trailervote.com/api/issues/d39741b4-87b8-461f-89e9-c35c555efe24"
|
141
|
+
},
|
142
|
+
{
|
143
|
+
"href": "https://fake.trailervote.com/api/issues/084c936b-49f2-4038-a43c-c971877c6a06"
|
144
|
+
},
|
145
|
+
{
|
146
|
+
"href": "https://fake.trailervote.com/api/issues/b65a6ea1-67a6-4038-906d-03b8b389f17a"
|
147
|
+
},
|
148
|
+
{
|
149
|
+
"href": "https://fake.trailervote.com/api/issues/3c7ca4f2-d57f-4e05-86d3-5fd3d2305dfc"
|
150
|
+
},
|
151
|
+
{
|
152
|
+
"href": "https://fake.trailervote.com/api/issues/63a48885-f8e9-43f4-bc94-5b145a2f56b5"
|
153
|
+
},
|
154
|
+
{
|
155
|
+
"href": "https://fake.trailervote.com/api/issues/bcb4cb4b-1412-4113-9791-50a58bc5774f"
|
156
|
+
},
|
157
|
+
{
|
158
|
+
"href": "https://fake.trailervote.com/api/issues/1d3612ad-ab4b-49da-9816-c1916e55ea61"
|
159
|
+
},
|
160
|
+
{
|
161
|
+
"href": "https://fake.trailervote.com/api/issues/1096e843-609f-4751-9fee-766edbd84e78"
|
162
|
+
},
|
163
|
+
{
|
164
|
+
"href": "https://fake.trailervote.com/api/issues/88414cb5-4c55-465d-91ab-3cc5e4105613"
|
165
|
+
},
|
166
|
+
{
|
167
|
+
"href": "https://fake.trailervote.com/api/issues/85c2a9a5-92e1-479c-8c16-fe57b7612fd8"
|
168
|
+
},
|
169
|
+
{
|
170
|
+
"href": "https://fake.trailervote.com/api/issues/d0a3c841-064b-49b4-b670-561a420fe1de"
|
171
|
+
},
|
172
|
+
{
|
173
|
+
"href": "https://fake.trailervote.com/api/issues/2d428f1b-2362-47f6-a9dc-fdcae37cd07f"
|
174
|
+
},
|
175
|
+
{
|
176
|
+
"href": "https://fake.trailervote.com/api/issues/e345fe09-b896-4817-aee7-0639e34ac567"
|
177
|
+
},
|
178
|
+
{
|
179
|
+
"href": "https://fake.trailervote.com/api/issues/0b3c9087-09b0-44f6-99e7-abe880686c68"
|
180
|
+
},
|
181
|
+
{
|
182
|
+
"href": "https://fake.trailervote.com/api/issues/74628278-f7b2-4dc9-ae0a-e0ad5075947c"
|
183
|
+
},
|
184
|
+
{
|
185
|
+
"href": "https://fake.trailervote.com/api/issues/44f2c2f9-e227-4edf-b838-2f086580e7cd"
|
186
|
+
},
|
187
|
+
{
|
188
|
+
"href": "https://fake.trailervote.com/api/issues/71677b2a-032d-46f1-9968-0ec358d5ff7f"
|
189
|
+
},
|
190
|
+
{
|
191
|
+
"href": "https://fake.trailervote.com/api/issues/3e816021-756f-4954-b357-15ec628cf743"
|
192
|
+
},
|
193
|
+
{
|
194
|
+
"href": "https://fake.trailervote.com/api/issues/98569236-7297-4178-9bc5-5436fb1117dd"
|
195
|
+
},
|
196
|
+
{
|
197
|
+
"href": "https://fake.trailervote.com/api/issues/429dd6d1-f495-4110-a51b-12a38ee4ba39"
|
198
|
+
},
|
199
|
+
{
|
200
|
+
"href": "https://fake.trailervote.com/api/issues/7c51a10d-116d-4269-9c63-33bacb3fa9ec"
|
201
|
+
},
|
202
|
+
{
|
203
|
+
"href": "https://fake.trailervote.com/api/issues/02d9e623-9740-46bf-9191-80099ea20889"
|
204
|
+
},
|
205
|
+
{
|
206
|
+
"href": "https://fake.trailervote.com/api/issues/af972eab-54a6-4d28-883c-e827fe8c47e8"
|
207
|
+
},
|
208
|
+
{
|
209
|
+
"href": "https://fake.trailervote.com/api/issues/59106eea-48c8-4f88-8554-2a2d927c9b6b"
|
210
|
+
},
|
211
|
+
{
|
212
|
+
"href": "https://fake.trailervote.com/api/issues/9ff7a3c1-ae30-419f-bf40-aa6d6c9ce0c6"
|
213
|
+
},
|
214
|
+
{
|
215
|
+
"href": "https://fake.trailervote.com/api/issues/4a525397-caf1-44ab-8654-5bad254a5ad6"
|
216
|
+
},
|
217
|
+
{
|
218
|
+
"href": "https://fake.trailervote.com/api/issues/7a591644-d936-42cc-a3fd-f6ec20c51436"
|
219
|
+
},
|
220
|
+
{
|
221
|
+
"href": "https://fake.trailervote.com/api/issues/b838ada7-1004-4f58-8c7e-8cbd2e37a74e"
|
222
|
+
},
|
223
|
+
{
|
224
|
+
"href": "https://fake.trailervote.com/api/issues/a32176e5-8cae-47c2-9963-bfea46e6a158"
|
225
|
+
},
|
226
|
+
{
|
227
|
+
"href": "https://fake.trailervote.com/api/issues/9fed2835-1f76-4b8d-8bfa-7dc9be70cc2f"
|
228
|
+
},
|
229
|
+
{
|
230
|
+
"href": "https://fake.trailervote.com/api/issues/e918301e-11f2-4c56-9fb6-d0d1ec0daf0a"
|
231
|
+
},
|
232
|
+
{
|
233
|
+
"href": "https://fake.trailervote.com/api/issues/b1349a1a-bad0-4e81-a38d-4df4e1a3331c"
|
234
|
+
},
|
235
|
+
{
|
236
|
+
"href": "https://fake.trailervote.com/api/issues/4c436971-58ef-4b43-87c4-4a006f268d87"
|
237
|
+
},
|
238
|
+
{
|
239
|
+
"href": "https://fake.trailervote.com/api/issues/7715bba4-b090-4d0b-958f-1e95d4e5a88e"
|
240
|
+
},
|
241
|
+
{
|
242
|
+
"href": "https://fake.trailervote.com/api/issues/e0321611-4875-41aa-9260-61bae88c5efc"
|
243
|
+
},
|
244
|
+
{
|
245
|
+
"href": "https://fake.trailervote.com/api/issues/c5ea1576-517f-42bf-b602-d5fcad53de7d"
|
246
|
+
},
|
247
|
+
{
|
248
|
+
"href": "https://fake.trailervote.com/api/issues/1ac9c96e-4651-475b-9230-86ed07fa091c"
|
249
|
+
},
|
250
|
+
{
|
251
|
+
"href": "https://fake.trailervote.com/api/issues/99159a27-cf5e-42c5-9d44-d231873117cd"
|
252
|
+
},
|
253
|
+
{
|
254
|
+
"href": "https://fake.trailervote.com/api/issues/e2706611-89d1-47df-9f74-0adf7720ba21"
|
255
|
+
},
|
256
|
+
{
|
257
|
+
"href": "https://fake.trailervote.com/api/issues/5c01bcc1-20b4-4ab2-980b-a0db081259f0"
|
258
|
+
},
|
259
|
+
{
|
260
|
+
"href": "https://fake.trailervote.com/api/issues/0491ccf9-509d-4986-acd9-02f5e8ab199b"
|
261
|
+
},
|
262
|
+
{
|
263
|
+
"href": "https://fake.trailervote.com/api/issues/cbaf49b0-4335-462f-bb7d-be5707148534"
|
264
|
+
},
|
265
|
+
{
|
266
|
+
"href": "https://fake.trailervote.com/api/issues/1a5ae026-3f43-45a2-b481-18290dfcf3e4"
|
267
|
+
},
|
268
|
+
{
|
269
|
+
"href": "https://fake.trailervote.com/api/issues/2a03c321-7f05-4eca-a686-2d9b51d56c5d"
|
270
|
+
},
|
271
|
+
{
|
272
|
+
"href": "https://fake.trailervote.com/api/issues/5aec89ad-d613-44b1-87b8-eb5ab3b5b417"
|
273
|
+
},
|
274
|
+
{
|
275
|
+
"href": "https://fake.trailervote.com/api/issues/7d649463-313d-4cef-9e40-c8b400598913"
|
276
|
+
},
|
277
|
+
{
|
278
|
+
"href": "https://fake.trailervote.com/api/issues/ac6ff8e2-15be-4fc2-93f4-58d6fb1b2702"
|
279
|
+
},
|
280
|
+
{
|
281
|
+
"href": "https://fake.trailervote.com/api/issues/b5a5f310-c989-42d5-befc-02331d811e68"
|
282
|
+
},
|
283
|
+
{
|
284
|
+
"href": "https://fake.trailervote.com/api/issues/51080fea-204d-4c22-9015-40aec66e145b"
|
285
|
+
},
|
286
|
+
{
|
287
|
+
"href": "https://fake.trailervote.com/api/issues/0372cd04-7aa4-43a0-bd26-7a6b8613a9d8"
|
288
|
+
},
|
289
|
+
{
|
290
|
+
"href": "https://fake.trailervote.com/api/issues/6954fbae-cd7f-4104-b8bc-a249ef53c5c0"
|
291
|
+
},
|
292
|
+
{
|
293
|
+
"href": "https://fake.trailervote.com/api/issues/4702923d-40c7-41dc-94d7-db108611c032"
|
294
|
+
},
|
295
|
+
{
|
296
|
+
"href": "https://fake.trailervote.com/api/issues/cbc4e618-3b97-40c9-af15-89688449d747"
|
297
|
+
},
|
298
|
+
{
|
299
|
+
"href": "https://fake.trailervote.com/api/issues/90133b65-cde6-4627-822d-2e86bd687703"
|
300
|
+
},
|
301
|
+
{
|
302
|
+
"href": "https://fake.trailervote.com/api/issues/d7f5bd4f-29fb-432b-a613-710b3e1adecc"
|
303
|
+
},
|
304
|
+
{
|
305
|
+
"href": "https://fake.trailervote.com/api/issues/1add7c01-9586-405e-8c6f-d574dfab5b81"
|
306
|
+
},
|
307
|
+
{
|
308
|
+
"href": "https://fake.trailervote.com/api/issues/87d40af0-6624-49a2-93a3-62826548c89c"
|
309
|
+
},
|
310
|
+
{
|
311
|
+
"href": "https://fake.trailervote.com/api/issues/d976585c-e361-4206-9828-183c5af7bc11"
|
312
|
+
},
|
313
|
+
{
|
314
|
+
"href": "https://fake.trailervote.com/api/issues/e55b0c9c-89cc-43e2-b793-677c89081163"
|
315
|
+
},
|
316
|
+
{
|
317
|
+
"href": "https://fake.trailervote.com/api/issues/4b347dc4-0324-4ed6-9af0-67cf1ac4237b"
|
318
|
+
},
|
319
|
+
{
|
320
|
+
"href": "https://fake.trailervote.com/api/issues/73cb44cd-5cca-4b31-bd3d-d86af28be3e2"
|
321
|
+
},
|
322
|
+
{
|
323
|
+
"href": "https://fake.trailervote.com/api/issues/05ab0f33-a2ff-4a72-8bc1-69b1ba97390b"
|
324
|
+
},
|
325
|
+
{
|
326
|
+
"href": "https://fake.trailervote.com/api/issues/144042ed-e1d1-4f36-bd3d-5bca2bc9a5e6"
|
327
|
+
},
|
328
|
+
{
|
329
|
+
"href": "https://fake.trailervote.com/api/issues/9fbdcfbf-a7d7-41ac-b68c-9994426d843c"
|
330
|
+
},
|
331
|
+
{
|
332
|
+
"href": "https://fake.trailervote.com/api/issues/12d6dfb1-1f4c-4e40-8679-e11e8507f0e7"
|
333
|
+
},
|
334
|
+
{
|
335
|
+
"href": "https://fake.trailervote.com/api/issues/7e6a4de8-78a4-42ad-8cc8-dc6c8c49f9b7"
|
336
|
+
},
|
337
|
+
{
|
338
|
+
"href": "https://fake.trailervote.com/api/issues/609748cd-1af5-48fb-b473-f1e0d4550d70"
|
339
|
+
},
|
340
|
+
{
|
341
|
+
"href": "https://fake.trailervote.com/api/issues/80f0d66d-cb4c-4de3-9b69-be821acf63a7"
|
342
|
+
},
|
343
|
+
{
|
344
|
+
"href": "https://fake.trailervote.com/api/issues/07d4663d-b8f2-450f-bc0e-dc608797406a"
|
345
|
+
},
|
346
|
+
{
|
347
|
+
"href": "https://fake.trailervote.com/api/issues/24e1569e-d6c2-4dfb-acab-b0d38c8e00ff"
|
348
|
+
},
|
349
|
+
{
|
350
|
+
"href": "https://fake.trailervote.com/api/issues/f99601b2-ecca-4d7a-a382-e212644a7b76"
|
351
|
+
},
|
352
|
+
{
|
353
|
+
"href": "https://fake.trailervote.com/api/issues/8da71e1d-47db-44f9-9882-5a528ae37109"
|
354
|
+
},
|
355
|
+
{
|
356
|
+
"href": "https://fake.trailervote.com/api/issues/2e399edc-066f-4b29-b2bb-54a4fcf8f26c"
|
357
|
+
},
|
358
|
+
{
|
359
|
+
"href": "https://fake.trailervote.com/api/issues/1cf96f62-23a6-4461-ac53-cd2ce93839fd"
|
360
|
+
},
|
361
|
+
{
|
362
|
+
"href": "https://fake.trailervote.com/api/issues/6638b101-92f8-4801-a404-941932197b6c"
|
363
|
+
},
|
364
|
+
{
|
365
|
+
"href": "https://fake.trailervote.com/api/issues/455f6a3e-e464-47ef-9fc8-83261861a146"
|
366
|
+
},
|
367
|
+
{
|
368
|
+
"href": "https://fake.trailervote.com/api/issues/d6212d1a-867e-4d73-9f9d-0d94c7c34075"
|
369
|
+
},
|
370
|
+
{
|
371
|
+
"href": "https://fake.trailervote.com/api/issues/90b90e8a-83b9-4c22-994c-23efe9ebda95"
|
372
|
+
},
|
373
|
+
{
|
374
|
+
"href": "https://fake.trailervote.com/api/issues/15412129-b609-4e46-88eb-33bb6c4fa556"
|
375
|
+
},
|
376
|
+
{
|
377
|
+
"href": "https://fake.trailervote.com/api/issues/ebd48cd0-8e41-46f5-8b22-b5ec74de0312"
|
378
|
+
},
|
379
|
+
{
|
380
|
+
"href": "https://fake.trailervote.com/api/issues/e4699ddf-abec-4728-8099-4c3d887d30f6"
|
381
|
+
},
|
382
|
+
{
|
383
|
+
"href": "https://fake.trailervote.com/api/issues/110d1bb4-a0e3-4a81-9208-765630ddd9ea"
|
384
|
+
},
|
385
|
+
{
|
386
|
+
"href": "https://fake.trailervote.com/api/issues/be3f40cf-bbe0-4470-bd6b-4dc26be31c07"
|
387
|
+
},
|
388
|
+
{
|
389
|
+
"href": "https://fake.trailervote.com/api/issues/3d8ce8b7-cd7d-48d2-89b9-19cc30bfbfc1"
|
390
|
+
},
|
391
|
+
{
|
392
|
+
"href": "https://fake.trailervote.com/api/issues/83469c74-fda4-456c-a63e-b52d356b8cc1"
|
393
|
+
},
|
394
|
+
{
|
395
|
+
"href": "https://fake.trailervote.com/api/issues/3f87f0ad-5abc-4e5e-aac4-2be4450375e1"
|
396
|
+
},
|
397
|
+
{
|
398
|
+
"href": "https://fake.trailervote.com/api/issues/73dc518e-b739-4183-b6ca-81a4541a824a"
|
399
|
+
},
|
400
|
+
{
|
401
|
+
"href": "https://fake.trailervote.com/api/issues/b5e9ae59-f92b-446b-8869-0fdee3d1e397"
|
402
|
+
},
|
403
|
+
{
|
404
|
+
"href": "https://fake.trailervote.com/api/issues/b874ef4d-89a0-4997-95db-39d7bba1d70f"
|
405
|
+
},
|
406
|
+
{
|
407
|
+
"href": "https://fake.trailervote.com/api/issues/9e672591-f598-429f-9fb3-cfb94cebea8b"
|
408
|
+
},
|
409
|
+
{
|
410
|
+
"href": "https://fake.trailervote.com/api/issues/7f023b02-488e-4d73-8f7f-7525ab3daa3c"
|
411
|
+
},
|
412
|
+
{
|
413
|
+
"href": "https://fake.trailervote.com/api/issues/aaf74563-7381-4c28-9cc0-19c95001dc03"
|
414
|
+
},
|
415
|
+
{
|
416
|
+
"href": "https://fake.trailervote.com/api/issues/d808d4ef-71ab-4e67-b0d2-b8d5c4a76557"
|
417
|
+
},
|
418
|
+
{
|
419
|
+
"href": "https://fake.trailervote.com/api/issues/c74911d5-b2bb-4c25-8a6d-a178f910084e"
|
420
|
+
},
|
421
|
+
{
|
422
|
+
"href": "https://fake.trailervote.com/api/issues/84fb2245-3653-440a-937a-2c02808eca2f"
|
423
|
+
},
|
424
|
+
{
|
425
|
+
"href": "https://fake.trailervote.com/api/issues/f681b6df-bb24-4253-9993-a75bb00a04f6"
|
426
|
+
},
|
427
|
+
{
|
428
|
+
"href": "https://fake.trailervote.com/api/issues/be0e60f4-eee9-4b84-9200-ed77fd3d2fdc"
|
429
|
+
},
|
430
|
+
{
|
431
|
+
"href": "https://fake.trailervote.com/api/issues/1d5d8f25-9d0e-4272-adaa-df1ab3b2b8c2"
|
432
|
+
},
|
433
|
+
{
|
434
|
+
"href": "https://fake.trailervote.com/api/issues/35d50baa-8715-4662-8ca9-9c1534214538"
|
435
|
+
},
|
436
|
+
{
|
437
|
+
"href": "https://fake.trailervote.com/api/issues/61c5b483-2191-4ac7-96e2-4114d17783a7"
|
438
|
+
},
|
439
|
+
{
|
440
|
+
"href": "https://fake.trailervote.com/api/issues/742608b1-a9d0-4ead-8c75-91221e035803"
|
441
|
+
},
|
442
|
+
{
|
443
|
+
"href": "https://fake.trailervote.com/api/issues/485028b7-dd31-4840-a0b6-7dcdc7430b8a"
|
444
|
+
},
|
445
|
+
{
|
446
|
+
"href": "https://fake.trailervote.com/api/issues/cefb5dc6-0227-40af-b44e-677a04abe885"
|
447
|
+
},
|
448
|
+
{
|
449
|
+
"href": "https://fake.trailervote.com/api/issues/cc03e45c-243e-4ef6-af80-a5a51a21f937"
|
450
|
+
},
|
451
|
+
{
|
452
|
+
"href": "https://fake.trailervote.com/api/issues/47a27f9c-0ba5-4600-9583-a7aaf82645d5"
|
453
|
+
},
|
454
|
+
{
|
455
|
+
"href": "https://fake.trailervote.com/api/issues/79b42552-0b2b-4487-98e8-128279cee2cc"
|
456
|
+
},
|
457
|
+
{
|
458
|
+
"href": "https://fake.trailervote.com/api/issues/bc30ce03-5575-4ab9-a937-474480ce83b1"
|
459
|
+
},
|
460
|
+
{
|
461
|
+
"href": "https://fake.trailervote.com/api/issues/b11daad0-86d5-4969-8890-6351498a14f0"
|
462
|
+
},
|
463
|
+
{
|
464
|
+
"href": "https://fake.trailervote.com/api/issues/71bb142d-5fe3-472f-9f99-aab30d41e4cc"
|
465
|
+
},
|
466
|
+
{
|
467
|
+
"href": "https://fake.trailervote.com/api/issues/e799d72d-0c1e-411a-8c6c-9760363fbd70"
|
468
|
+
},
|
469
|
+
{
|
470
|
+
"href": "https://fake.trailervote.com/api/issues/0c7d901e-ed52-46d7-9323-5919eee6834c"
|
471
|
+
},
|
472
|
+
{
|
473
|
+
"href": "https://fake.trailervote.com/api/issues/cf779b0e-e0f5-41d1-8a3c-6aed53bc1d29"
|
474
|
+
},
|
475
|
+
{
|
476
|
+
"href": "https://fake.trailervote.com/api/issues/ddd58afa-41c9-4e75-90d9-31eca699b443"
|
477
|
+
},
|
478
|
+
{
|
479
|
+
"href": "https://fake.trailervote.com/api/issues/ae8cde40-da38-45de-8b74-86e13e88fe3b"
|
480
|
+
},
|
481
|
+
{
|
482
|
+
"href": "https://fake.trailervote.com/api/issues/c7568040-ee3a-4aa5-a279-68ca8013b275"
|
483
|
+
},
|
484
|
+
{
|
485
|
+
"href": "https://fake.trailervote.com/api/issues/f6ab6722-d7ff-4c70-ba62-16d77aadd05d"
|
486
|
+
},
|
487
|
+
{
|
488
|
+
"href": "https://fake.trailervote.com/api/issues/32373ffe-1705-4698-8457-40a8eec6ac8d"
|
489
|
+
},
|
490
|
+
{
|
491
|
+
"href": "https://fake.trailervote.com/api/issues/d684e788-bca8-430e-9ac0-202fc10d1831"
|
492
|
+
},
|
493
|
+
{
|
494
|
+
"href": "https://fake.trailervote.com/api/issues/5c060d33-76ab-4106-b327-794c67e992f3"
|
495
|
+
},
|
496
|
+
{
|
497
|
+
"href": "https://fake.trailervote.com/api/issues/f0aad1ed-0165-447a-9ba9-400a61ec5c06"
|
498
|
+
},
|
499
|
+
{
|
500
|
+
"href": "https://fake.trailervote.com/api/issues/0728f726-0ae4-464b-93f8-6f3414729be1"
|
501
|
+
},
|
502
|
+
{
|
503
|
+
"href": "https://fake.trailervote.com/api/issues/d693ba1a-0257-4ca6-8a4e-6b1ebfb49f39"
|
504
|
+
},
|
505
|
+
{
|
506
|
+
"href": "https://fake.trailervote.com/api/issues/08557fd8-b475-47a0-b5ff-46c2d9effb6c"
|
507
|
+
},
|
508
|
+
{
|
509
|
+
"href": "https://fake.trailervote.com/api/issues/6f24e9eb-373f-4437-8840-473e0544af9c"
|
510
|
+
},
|
511
|
+
{
|
512
|
+
"href": "https://fake.trailervote.com/api/issues/179be9fa-38eb-42c3-8780-76d4203a370e"
|
513
|
+
},
|
514
|
+
{
|
515
|
+
"href": "https://fake.trailervote.com/api/issues/55404c68-58cc-49ae-a3ee-3a571195455e"
|
516
|
+
},
|
517
|
+
{
|
518
|
+
"href": "https://fake.trailervote.com/api/issues/a6578af5-c1ec-4437-8f97-15ba8678fdb8"
|
519
|
+
},
|
520
|
+
{
|
521
|
+
"href": "https://fake.trailervote.com/api/issues/e1e85e2e-f057-4faf-be1c-0954dde1e768"
|
522
|
+
},
|
523
|
+
{
|
524
|
+
"href": "https://fake.trailervote.com/api/issues/3456cff4-e97e-4a2a-8d4f-5a5d3d88383a"
|
525
|
+
},
|
526
|
+
{
|
527
|
+
"href": "https://fake.trailervote.com/api/issues/3bf4136c-d23a-499e-8fd3-cdc9256b3f3e"
|
528
|
+
},
|
529
|
+
{
|
530
|
+
"href": "https://fake.trailervote.com/api/issues/9b4de7a7-a3d2-4424-85f1-82f26b3fad11"
|
531
|
+
},
|
532
|
+
{
|
533
|
+
"href": "https://fake.trailervote.com/api/issues/2cb413ac-031b-4f62-bc65-782cb6784d66"
|
534
|
+
},
|
535
|
+
{
|
536
|
+
"href": "https://fake.trailervote.com/api/issues/3733574c-5c79-4d84-844f-8b4f136cdf53"
|
537
|
+
},
|
538
|
+
{
|
539
|
+
"href": "https://fake.trailervote.com/api/issues/0ae1f357-ddf0-42a9-bac2-17a01710154e"
|
540
|
+
},
|
541
|
+
{
|
542
|
+
"href": "https://fake.trailervote.com/api/issues/c58b38e3-16c6-49bf-9ac2-3777382eeb88"
|
543
|
+
},
|
544
|
+
{
|
545
|
+
"href": "https://fake.trailervote.com/api/issues/df4781a2-e051-4cde-88e1-1044e33c9a25"
|
546
|
+
},
|
547
|
+
{
|
548
|
+
"href": "https://fake.trailervote.com/api/issues/620b8778-7cd4-4d04-93ed-d715c7409f04"
|
549
|
+
},
|
550
|
+
{
|
551
|
+
"href": "https://fake.trailervote.com/api/issues/0a29e00d-636d-4a99-b693-8c6783c63816"
|
552
|
+
},
|
553
|
+
{
|
554
|
+
"href": "https://fake.trailervote.com/api/issues/a4a43438-5e4b-4c3c-b855-1cc743e0f174"
|
555
|
+
},
|
556
|
+
{
|
557
|
+
"href": "https://fake.trailervote.com/api/issues/bb127edf-eb9e-46d6-b44f-4881d1a8a13d"
|
558
|
+
},
|
559
|
+
{
|
560
|
+
"href": "https://fake.trailervote.com/api/issues/e1fa82a7-226d-41b6-865d-49c1679d6fd8"
|
561
|
+
},
|
562
|
+
{
|
563
|
+
"href": "https://fake.trailervote.com/api/issues/287abf05-472f-48f9-8064-09e83560c78a"
|
564
|
+
},
|
565
|
+
{
|
566
|
+
"href": "https://fake.trailervote.com/api/issues/54ef07d7-e2e9-480f-a7d0-25a5ead4d50c"
|
567
|
+
},
|
568
|
+
{
|
569
|
+
"href": "https://fake.trailervote.com/api/issues/1cb08ab0-1178-471d-8446-2b90398fb8ee"
|
570
|
+
},
|
571
|
+
{
|
572
|
+
"href": "https://fake.trailervote.com/api/issues/b5dd3893-1fcd-49fb-8151-92b3297ec63e"
|
573
|
+
},
|
574
|
+
{
|
575
|
+
"href": "https://fake.trailervote.com/api/issues/5ff0a36b-5948-4333-81ff-3226ce06194a"
|
576
|
+
},
|
577
|
+
{
|
578
|
+
"href": "https://fake.trailervote.com/api/issues/249c2d6e-d38b-4068-838e-67171933a7e4"
|
579
|
+
},
|
580
|
+
{
|
581
|
+
"href": "https://fake.trailervote.com/api/issues/5f2f18a3-11b8-40ff-a350-8a5603084c3a"
|
582
|
+
},
|
583
|
+
{
|
584
|
+
"href": "https://fake.trailervote.com/api/issues/6b075fe7-ee11-43d9-abcd-63ee9f0f5829"
|
585
|
+
},
|
586
|
+
{
|
587
|
+
"href": "https://fake.trailervote.com/api/issues/ec4b3cde-bbad-429e-8475-6e8dc5178589"
|
588
|
+
},
|
589
|
+
{
|
590
|
+
"href": "https://fake.trailervote.com/api/issues/0f61b09d-8281-430f-af71-34aea30490ae"
|
591
|
+
},
|
592
|
+
{
|
593
|
+
"href": "https://fake.trailervote.com/api/issues/5e7c87fb-9b36-418c-b468-52a3c002fce4"
|
594
|
+
},
|
595
|
+
{
|
596
|
+
"href": "https://fake.trailervote.com/api/issues/e6c1e1bb-e59b-485d-9fa6-a8b473da9558"
|
597
|
+
},
|
598
|
+
{
|
599
|
+
"href": "https://fake.trailervote.com/api/issues/4c246ad0-ac4e-4741-b64f-136ea2f0648c"
|
600
|
+
},
|
601
|
+
{
|
602
|
+
"href": "https://fake.trailervote.com/api/issues/df12d8b6-d5ff-46a8-aee7-fa9186f3012b"
|
603
|
+
},
|
604
|
+
{
|
605
|
+
"href": "https://fake.trailervote.com/api/issues/d239bd0c-2add-4576-bcb4-7a1074f31156"
|
606
|
+
},
|
607
|
+
{
|
608
|
+
"href": "https://fake.trailervote.com/api/issues/1e62206a-03e6-4efd-9e97-66cc7076bca3"
|
609
|
+
},
|
610
|
+
{
|
611
|
+
"href": "https://fake.trailervote.com/api/issues/1f0c0c89-35bd-4926-ae22-0b4b3b81baa8"
|
612
|
+
},
|
613
|
+
{
|
614
|
+
"href": "https://fake.trailervote.com/api/issues/1634b110-6954-4427-b939-e2f0973b8d2a"
|
615
|
+
},
|
616
|
+
{
|
617
|
+
"href": "https://fake.trailervote.com/api/issues/14862697-08f2-4eaf-9fd2-d7f2d85a5b87"
|
618
|
+
},
|
619
|
+
{
|
620
|
+
"href": "https://fake.trailervote.com/api/issues/2c949193-8dea-4550-9c70-685dc9f44802"
|
621
|
+
},
|
622
|
+
{
|
623
|
+
"href": "https://fake.trailervote.com/api/issues/d1be0a91-9133-4370-9393-6d8c1b4cbfb6"
|
624
|
+
},
|
625
|
+
{
|
626
|
+
"href": "https://fake.trailervote.com/api/issues/fa706a39-b540-416a-9253-259e191f8788"
|
627
|
+
},
|
628
|
+
{
|
629
|
+
"href": "https://fake.trailervote.com/api/issues/897c0383-0216-4daa-960d-eec718702431"
|
630
|
+
},
|
631
|
+
{
|
632
|
+
"href": "https://fake.trailervote.com/api/issues/e862700f-df2d-41f3-ad31-3b2193a58a69"
|
633
|
+
},
|
634
|
+
{
|
635
|
+
"href": "https://fake.trailervote.com/api/issues/2da4455f-b2ce-440d-a1a2-fb039545887f"
|
636
|
+
},
|
637
|
+
{
|
638
|
+
"href": "https://fake.trailervote.com/api/issues/0abf7dc7-7709-41a5-9c4a-1cc3c829b313"
|
639
|
+
},
|
640
|
+
{
|
641
|
+
"href": "https://fake.trailervote.com/api/issues/1c8e3640-9e5d-40bb-9ef0-b1394c09e65c"
|
642
|
+
},
|
643
|
+
{
|
644
|
+
"href": "https://fake.trailervote.com/api/issues/df191506-1c5b-4540-b56a-f7c5849cf94f"
|
645
|
+
},
|
646
|
+
{
|
647
|
+
"href": "https://fake.trailervote.com/api/issues/d64e3516-24aa-4308-af69-a62f2c81a4aa"
|
648
|
+
},
|
649
|
+
{
|
650
|
+
"href": "https://fake.trailervote.com/api/issues/5348574f-38cd-407e-84ff-b12ff6d91714"
|
651
|
+
},
|
652
|
+
{
|
653
|
+
"href": "https://fake.trailervote.com/api/issues/ef416fe8-cab5-48c5-b5f1-4f976f9fe020"
|
654
|
+
},
|
655
|
+
{
|
656
|
+
"href": "https://fake.trailervote.com/api/issues/9f765b21-fe7c-4a6b-b6f8-9fe3b386c6d0"
|
657
|
+
},
|
658
|
+
{
|
659
|
+
"href": "https://fake.trailervote.com/api/issues/945e460d-dd11-4a9d-b7ea-c4df06803eeb"
|
660
|
+
},
|
661
|
+
{
|
662
|
+
"href": "https://fake.trailervote.com/api/issues/75aebf50-b742-460e-bbf1-bb7e92f73d01"
|
663
|
+
},
|
664
|
+
{
|
665
|
+
"href": "https://fake.trailervote.com/api/issues/cfd9c0d1-aae4-415a-a63c-60e05c33b7df"
|
666
|
+
},
|
667
|
+
{
|
668
|
+
"href": "https://fake.trailervote.com/api/issues/92ceed9f-dfcf-4677-9958-822bcd5268fe"
|
669
|
+
},
|
670
|
+
{
|
671
|
+
"href": "https://fake.trailervote.com/api/issues/a008bd5c-777f-431a-a3e9-24e4272f67a2"
|
672
|
+
},
|
673
|
+
{
|
674
|
+
"href": "https://fake.trailervote.com/api/issues/27a244b3-e764-49ce-b158-faa7d754982f"
|
675
|
+
},
|
676
|
+
{
|
677
|
+
"href": "https://fake.trailervote.com/api/issues/40f249f6-334c-41b9-ae10-d45f2f9db5df"
|
678
|
+
},
|
679
|
+
{
|
680
|
+
"href": "https://fake.trailervote.com/api/issues/81d49381-1d31-4dc1-96bf-bb910f57f7ef"
|
681
|
+
},
|
682
|
+
{
|
683
|
+
"href": "https://fake.trailervote.com/api/issues/104e18cd-8435-4599-be7d-562860c9388f"
|
684
|
+
},
|
685
|
+
{
|
686
|
+
"href": "https://fake.trailervote.com/api/issues/671f3a5d-6698-4245-8fac-fce9b4d1ea33"
|
687
|
+
},
|
688
|
+
{
|
689
|
+
"href": "https://fake.trailervote.com/api/issues/26ee4b32-a2ee-4ebf-8010-79346225d073"
|
690
|
+
},
|
691
|
+
{
|
692
|
+
"href": "https://fake.trailervote.com/api/issues/7b458c7c-d06c-4cff-8a95-b14a64a7f64c"
|
693
|
+
},
|
694
|
+
{
|
695
|
+
"href": "https://fake.trailervote.com/api/issues/b5621d48-43b8-4825-b044-ca81d09c8491"
|
696
|
+
},
|
697
|
+
{
|
698
|
+
"href": "https://fake.trailervote.com/api/issues/01a472ec-2533-49d6-95de-ab77cda6108e"
|
699
|
+
},
|
700
|
+
{
|
701
|
+
"href": "https://fake.trailervote.com/api/issues/ddd87a2c-3794-4076-8cd1-4cb4efe4fdf7"
|
702
|
+
},
|
703
|
+
{
|
704
|
+
"href": "https://fake.trailervote.com/api/issues/93b654e6-a361-46bc-833f-c16fc85d9372"
|
705
|
+
},
|
706
|
+
{
|
707
|
+
"href": "https://fake.trailervote.com/api/issues/28aaf771-7853-4a1c-9904-b5653c4c5604"
|
708
|
+
},
|
709
|
+
{
|
710
|
+
"href": "https://fake.trailervote.com/api/issues/8c1e9cbf-0422-4708-a47e-ecc2dc459080"
|
711
|
+
},
|
712
|
+
{
|
713
|
+
"href": "https://fake.trailervote.com/api/issues/c883c23b-2a34-4d1f-8afb-2b3cf80db5f8"
|
714
|
+
},
|
715
|
+
{
|
716
|
+
"href": "https://fake.trailervote.com/api/issues/8feef99c-ebf1-4875-8660-a0ca39b96448"
|
717
|
+
},
|
718
|
+
{
|
719
|
+
"href": "https://fake.trailervote.com/api/issues/1ce8cce7-ffe6-4a4a-9486-e03f2d586eb2"
|
720
|
+
},
|
721
|
+
{
|
722
|
+
"href": "https://fake.trailervote.com/api/issues/9c1047c2-f857-4523-a497-f4d6026182fb"
|
723
|
+
},
|
724
|
+
{
|
725
|
+
"href": "https://fake.trailervote.com/api/issues/e9649bd6-8f04-46b3-a00e-8d390954f141"
|
726
|
+
},
|
727
|
+
{
|
728
|
+
"href": "https://fake.trailervote.com/api/issues/8438bff3-c7ac-4caf-9905-135898692a5a"
|
729
|
+
},
|
730
|
+
{
|
731
|
+
"href": "https://fake.trailervote.com/api/issues/03165703-4711-49c8-8164-0baad5bc3c06"
|
732
|
+
},
|
733
|
+
{
|
734
|
+
"href": "https://fake.trailervote.com/api/issues/c81dcbdd-8cbb-4a38-9fdb-56446eae9516"
|
735
|
+
},
|
736
|
+
{
|
737
|
+
"href": "https://fake.trailervote.com/api/issues/15298bf6-e4c4-4929-af5d-c5bd1d28d28e"
|
738
|
+
},
|
739
|
+
{
|
740
|
+
"href": "https://fake.trailervote.com/api/issues/66abef2b-4505-4116-9e73-f3de52d01a5f"
|
741
|
+
},
|
742
|
+
{
|
743
|
+
"href": "https://fake.trailervote.com/api/issues/23eb19f9-ee9f-4859-b7f7-656a9bf07e2f"
|
744
|
+
},
|
745
|
+
{
|
746
|
+
"href": "https://fake.trailervote.com/api/issues/c7b88d46-a4c8-451e-bdb6-c1ceec8665ff"
|
747
|
+
},
|
748
|
+
{
|
749
|
+
"href": "https://fake.trailervote.com/api/issues/5cf3993e-0a3c-4122-a6db-4e5db038269b"
|
750
|
+
},
|
751
|
+
{
|
752
|
+
"href": "https://fake.trailervote.com/api/issues/7bbf4f75-85bc-4d84-bf8a-693bae347e1f"
|
753
|
+
},
|
754
|
+
{
|
755
|
+
"href": "https://fake.trailervote.com/api/issues/ef4a8d41-653e-4080-a44d-98bc97afc264"
|
756
|
+
},
|
757
|
+
{
|
758
|
+
"href": "https://fake.trailervote.com/api/issues/0b8e73e1-d71d-4f96-bd80-6661c1e48046"
|
759
|
+
},
|
760
|
+
{
|
761
|
+
"href": "https://fake.trailervote.com/api/issues/45ab039e-fa70-42b6-95cd-2a3d924ef561"
|
762
|
+
},
|
763
|
+
{
|
764
|
+
"href": "https://fake.trailervote.com/api/issues/14a0de42-29a1-43ae-a97e-99d48d8284d1"
|
765
|
+
},
|
766
|
+
{
|
767
|
+
"href": "https://fake.trailervote.com/api/issues/09c70559-5964-4f41-a03f-aa0c68b70f3a"
|
768
|
+
},
|
769
|
+
{
|
770
|
+
"href": "https://fake.trailervote.com/api/issues/0b92918b-9321-4535-a2e9-5c81a401d1b0"
|
771
|
+
},
|
772
|
+
{
|
773
|
+
"href": "https://fake.trailervote.com/api/issues/bdda0de7-1603-4064-9a35-126d20771f6d"
|
774
|
+
},
|
775
|
+
{
|
776
|
+
"href": "https://fake.trailervote.com/api/issues/c8df5d0d-f06e-4be6-973b-b1b05b303832"
|
777
|
+
},
|
778
|
+
{
|
779
|
+
"href": "https://fake.trailervote.com/api/issues/577bfc7f-c520-43f1-9cef-756dff4d6d3b"
|
780
|
+
},
|
781
|
+
{
|
782
|
+
"href": "https://fake.trailervote.com/api/issues/350f0feb-96bf-44fa-8fa7-1a8e4bf34695"
|
783
|
+
},
|
784
|
+
{
|
785
|
+
"href": "https://fake.trailervote.com/api/issues/d0dd6ac1-f10c-43a6-a20e-514369adcf29"
|
786
|
+
},
|
787
|
+
{
|
788
|
+
"href": "https://fake.trailervote.com/api/issues/f441be58-7d03-4285-9cee-be9babde0f47"
|
789
|
+
},
|
790
|
+
{
|
791
|
+
"href": "https://fake.trailervote.com/api/issues/0e75361e-6f49-4402-9307-c9d1df9fc3a8"
|
792
|
+
},
|
793
|
+
{
|
794
|
+
"href": "https://fake.trailervote.com/api/issues/acdcc97a-f4fb-46d6-a338-f8c25f3a3668"
|
795
|
+
},
|
796
|
+
{
|
797
|
+
"href": "https://fake.trailervote.com/api/issues/b4a5b75c-b188-4873-81c4-304cb77e8539"
|
798
|
+
},
|
799
|
+
{
|
800
|
+
"href": "https://fake.trailervote.com/api/issues/f7a1b3e4-3fcf-4720-9877-6d715b817481"
|
801
|
+
},
|
802
|
+
{
|
803
|
+
"href": "https://fake.trailervote.com/api/issues/0eec5757-3ceb-4b51-ba30-b7111899520c"
|
804
|
+
},
|
805
|
+
{
|
806
|
+
"href": "https://fake.trailervote.com/api/issues/f7fdf1d6-1446-4426-bed0-bad0bcceb209"
|
807
|
+
},
|
808
|
+
{
|
809
|
+
"href": "https://fake.trailervote.com/api/issues/2942695d-5c07-4f8d-a5b7-6960db7bba1a"
|
810
|
+
},
|
811
|
+
{
|
812
|
+
"href": "https://fake.trailervote.com/api/issues/6dc315cc-816b-4d2a-b8b9-e831007020de"
|
813
|
+
},
|
814
|
+
{
|
815
|
+
"href": "https://fake.trailervote.com/api/issues/2da82e59-5d12-49b0-8c19-7090b6273fb2"
|
816
|
+
},
|
817
|
+
{
|
818
|
+
"href": "https://fake.trailervote.com/api/issues/60d0cf93-c724-4176-984e-97335f532478"
|
819
|
+
},
|
820
|
+
{
|
821
|
+
"href": "https://fake.trailervote.com/api/issues/40ea8eef-4344-43de-a342-8ec66a9eb573"
|
822
|
+
},
|
823
|
+
{
|
824
|
+
"href": "https://fake.trailervote.com/api/issues/4db79e4d-8ddd-48c4-a1c8-297ee461c060"
|
825
|
+
},
|
826
|
+
{
|
827
|
+
"href": "https://fake.trailervote.com/api/issues/76bc85aa-e767-4800-a9e8-ab748daaa796"
|
828
|
+
},
|
829
|
+
{
|
830
|
+
"href": "https://fake.trailervote.com/api/issues/c06a59d6-e8e5-4f73-a541-f659c39ef5cd"
|
831
|
+
},
|
832
|
+
{
|
833
|
+
"href": "https://fake.trailervote.com/api/issues/200cf642-9559-4da6-980c-7922296d7bc8"
|
834
|
+
},
|
835
|
+
{
|
836
|
+
"href": "https://fake.trailervote.com/api/issues/4f1881fb-7fe4-420e-952e-b0939c4eb2c2"
|
837
|
+
},
|
838
|
+
{
|
839
|
+
"href": "https://fake.trailervote.com/api/issues/18c24fa3-f271-4c36-a939-50382a9ba2d9"
|
840
|
+
},
|
841
|
+
{
|
842
|
+
"href": "https://fake.trailervote.com/api/issues/693cf07c-d789-455e-87a0-7ab988dd8a34"
|
843
|
+
},
|
844
|
+
{
|
845
|
+
"href": "https://fake.trailervote.com/api/issues/e19ed2fa-ab5f-4bd2-8571-e4126742228b"
|
846
|
+
},
|
847
|
+
{
|
848
|
+
"href": "https://fake.trailervote.com/api/issues/5310939d-27a0-4411-b2c8-790223037fe7"
|
849
|
+
},
|
850
|
+
{
|
851
|
+
"href": "https://fake.trailervote.com/api/issues/89d6b513-8ca3-44c1-b0fb-19e1c2926ae8"
|
852
|
+
},
|
853
|
+
{
|
854
|
+
"href": "https://fake.trailervote.com/api/issues/22660191-f3c2-4ebe-8be9-dfb168415ed4"
|
855
|
+
},
|
856
|
+
{
|
857
|
+
"href": "https://fake.trailervote.com/api/issues/1bf9248a-715b-4552-afc2-ac41604cea4e"
|
858
|
+
},
|
859
|
+
{
|
860
|
+
"href": "https://fake.trailervote.com/api/issues/38c8898f-1aef-4437-a00a-7524c6077075"
|
861
|
+
},
|
862
|
+
{
|
863
|
+
"href": "https://fake.trailervote.com/api/issues/4e6a0cd9-2029-41bd-a11b-abefd82783ec"
|
864
|
+
},
|
865
|
+
{
|
866
|
+
"href": "https://fake.trailervote.com/api/issues/70534512-1599-4b0e-bf90-21d1059e6578"
|
867
|
+
},
|
868
|
+
{
|
869
|
+
"href": "https://fake.trailervote.com/api/issues/fb430c9e-576e-43f6-b01a-91efe5317e61"
|
870
|
+
},
|
871
|
+
{
|
872
|
+
"href": "https://fake.trailervote.com/api/issues/4fb6983e-cd0e-4744-8602-57b48de84b8f"
|
873
|
+
},
|
874
|
+
{
|
875
|
+
"href": "https://fake.trailervote.com/api/issues/b42353bd-5a1b-432c-b219-34bb9242f0d1"
|
876
|
+
},
|
877
|
+
{
|
878
|
+
"href": "https://fake.trailervote.com/api/issues/50b865be-6835-4ecc-bec8-e7c1618be605"
|
879
|
+
},
|
880
|
+
{
|
881
|
+
"href": "https://fake.trailervote.com/api/issues/0e4bce53-9b42-4bad-bfc5-dc25665dd798"
|
882
|
+
},
|
883
|
+
{
|
884
|
+
"href": "https://fake.trailervote.com/api/issues/c35cd3d1-556d-4a06-ab12-6e8cdee35d49"
|
885
|
+
},
|
886
|
+
{
|
887
|
+
"href": "https://fake.trailervote.com/api/issues/4fd1e60f-ee8e-4078-bea9-f6a26cf0f66d"
|
888
|
+
},
|
889
|
+
{
|
890
|
+
"href": "https://fake.trailervote.com/api/issues/9d6f4ad1-4622-4a37-80f1-2adb4957290c"
|
891
|
+
},
|
892
|
+
{
|
893
|
+
"href": "https://fake.trailervote.com/api/issues/28daa6fb-7c29-427b-9d6e-0bb52edc2769"
|
894
|
+
},
|
895
|
+
{
|
896
|
+
"href": "https://fake.trailervote.com/api/issues/f609e942-4d01-467e-977e-a5a325c70921"
|
897
|
+
},
|
898
|
+
{
|
899
|
+
"href": "https://fake.trailervote.com/api/issues/fc34b9a5-6f8c-4a85-a26a-179dcd84c864"
|
900
|
+
},
|
901
|
+
{
|
902
|
+
"href": "https://fake.trailervote.com/api/issues/13232c48-4ca4-43af-a26d-7db612ddfde3"
|
903
|
+
},
|
904
|
+
{
|
905
|
+
"href": "https://fake.trailervote.com/api/issues/d70c14c5-d565-4d8d-bf2a-c0860c04c75d"
|
906
|
+
},
|
907
|
+
{
|
908
|
+
"href": "https://fake.trailervote.com/api/issues/1d70c19e-d05c-407a-8f1f-39b646060a75"
|
909
|
+
},
|
910
|
+
{
|
911
|
+
"href": "https://fake.trailervote.com/api/issues/f8d27412-0a41-4cdf-afad-87449ec1b73f"
|
912
|
+
},
|
913
|
+
{
|
914
|
+
"href": "https://fake.trailervote.com/api/issues/9527772f-5807-46ae-b28b-6feb6dbda8a2"
|
915
|
+
},
|
916
|
+
{
|
917
|
+
"href": "https://fake.trailervote.com/api/issues/0e53ffa2-cc05-426a-bcba-ec5787296464"
|
918
|
+
},
|
919
|
+
{
|
920
|
+
"href": "https://fake.trailervote.com/api/issues/86292aca-3cd1-499e-ba7e-5be819f7c721"
|
921
|
+
},
|
922
|
+
{
|
923
|
+
"href": "https://fake.trailervote.com/api/issues/ba436ae4-33ab-4882-986b-13f65f81673c"
|
924
|
+
},
|
925
|
+
{
|
926
|
+
"href": "https://fake.trailervote.com/api/issues/94d82a09-79b3-41c7-97fa-594bc3eae331"
|
927
|
+
},
|
928
|
+
{
|
929
|
+
"href": "https://fake.trailervote.com/api/issues/acfdfa22-0d11-4aad-bdba-a1db8f3bf8ff"
|
930
|
+
},
|
931
|
+
{
|
932
|
+
"href": "https://fake.trailervote.com/api/issues/7b5917e9-3535-4268-9fd2-a8cdbf282c51"
|
933
|
+
},
|
934
|
+
{
|
935
|
+
"href": "https://fake.trailervote.com/api/issues/05f5a3f2-c887-460e-b467-2d01a439599f"
|
936
|
+
},
|
937
|
+
{
|
938
|
+
"href": "https://fake.trailervote.com/api/issues/f71b031f-eab5-4a67-994c-6072d3e82628"
|
939
|
+
},
|
940
|
+
{
|
941
|
+
"href": "https://fake.trailervote.com/api/issues/369894d6-b0ce-4920-b3ed-a847f0af93d3"
|
942
|
+
},
|
943
|
+
{
|
944
|
+
"href": "https://fake.trailervote.com/api/issues/c4efcd2d-fa45-4764-91ad-c68c54224d5e"
|
945
|
+
},
|
946
|
+
{
|
947
|
+
"href": "https://fake.trailervote.com/api/issues/699f7c03-f402-45f5-b59b-5f47139070cf"
|
948
|
+
},
|
949
|
+
{
|
950
|
+
"href": "https://fake.trailervote.com/api/issues/11307c98-12d6-4cbc-bdfd-285e4ad8ec4d"
|
951
|
+
},
|
952
|
+
{
|
953
|
+
"href": "https://fake.trailervote.com/api/issues/91420d31-f8b2-469a-b978-a4ce543e3689"
|
954
|
+
},
|
955
|
+
{
|
956
|
+
"href": "https://fake.trailervote.com/api/issues/ccf44202-e1d2-404e-bc5a-7c4b40c199db"
|
957
|
+
},
|
958
|
+
{
|
959
|
+
"href": "https://fake.trailervote.com/api/issues/657ff94a-fe85-480c-9c96-e83288d4b567"
|
960
|
+
},
|
961
|
+
{
|
962
|
+
"href": "https://fake.trailervote.com/api/issues/25b05912-655e-448c-8184-67aa75dd639b"
|
963
|
+
},
|
964
|
+
{
|
965
|
+
"href": "https://fake.trailervote.com/api/issues/01110189-50ae-4f22-9cc9-2aee3ac6a913"
|
966
|
+
},
|
967
|
+
{
|
968
|
+
"href": "https://fake.trailervote.com/api/issues/c9814b14-28b2-4dc6-9389-e347b6c6ec36"
|
969
|
+
},
|
970
|
+
{
|
971
|
+
"href": "https://fake.trailervote.com/api/issues/b239ca2c-8b3f-415d-b994-ee0042d08e37"
|
972
|
+
},
|
973
|
+
{
|
974
|
+
"href": "https://fake.trailervote.com/api/issues/3f5dc59d-49d2-41f3-a056-6571f250673d"
|
975
|
+
},
|
976
|
+
{
|
977
|
+
"href": "https://fake.trailervote.com/api/issues/7b9d6af2-d44e-4a5f-bfa1-40b34f83f305"
|
978
|
+
},
|
979
|
+
{
|
980
|
+
"href": "https://fake.trailervote.com/api/issues/2830e0a8-4e3e-4a3e-abfc-c326ce07ce12"
|
981
|
+
},
|
982
|
+
{
|
983
|
+
"href": "https://fake.trailervote.com/api/issues/2bebeea5-6dd0-4336-a01a-d9a506478d9d"
|
984
|
+
},
|
985
|
+
{
|
986
|
+
"href": "https://fake.trailervote.com/api/issues/de5bd335-13da-488a-b995-a2e374ff6770"
|
987
|
+
},
|
988
|
+
{
|
989
|
+
"href": "https://fake.trailervote.com/api/issues/d5c7279a-9a7a-4ca8-9cbb-e97815ca77f7"
|
990
|
+
},
|
991
|
+
{
|
992
|
+
"href": "https://fake.trailervote.com/api/issues/adb545d8-09d6-478e-954a-4a4e00ba6d38"
|
993
|
+
},
|
994
|
+
{
|
995
|
+
"href": "https://fake.trailervote.com/api/issues/52f9ce2a-4653-4bb8-90ab-22ac2d475f5a"
|
996
|
+
},
|
997
|
+
{
|
998
|
+
"href": "https://fake.trailervote.com/api/issues/c0b92d88-9f25-48c7-893e-3b68a6ff7560"
|
999
|
+
},
|
1000
|
+
{
|
1001
|
+
"href": "https://fake.trailervote.com/api/issues/a44a89bb-9245-4827-abe9-d3b3c7eb07af"
|
1002
|
+
},
|
1003
|
+
{
|
1004
|
+
"href": "https://fake.trailervote.com/api/issues/124f7077-f91e-4b8e-b3d2-a8723beeaff3"
|
1005
|
+
},
|
1006
|
+
{
|
1007
|
+
"href": "https://fake.trailervote.com/api/issues/f4e71723-7606-4a38-9b0a-518a73c39899"
|
1008
|
+
},
|
1009
|
+
{
|
1010
|
+
"href": "https://fake.trailervote.com/api/issues/658c03b0-9719-4963-9886-5f748700ace5"
|
1011
|
+
},
|
1012
|
+
{
|
1013
|
+
"href": "https://fake.trailervote.com/api/issues/1574f17f-592f-4eb3-8fd3-85d0c3b360b0"
|
1014
|
+
},
|
1015
|
+
{
|
1016
|
+
"href": "https://fake.trailervote.com/api/issues/13b368e8-8e33-49dd-bf1d-ae911cb0410c"
|
1017
|
+
},
|
1018
|
+
{
|
1019
|
+
"href": "https://fake.trailervote.com/api/issues/21fb6051-6501-485c-9f41-ed3cd19d2b19"
|
1020
|
+
},
|
1021
|
+
{
|
1022
|
+
"href": "https://fake.trailervote.com/api/issues/4cb68236-f93a-49ce-b82e-6b27b8685e5c"
|
1023
|
+
},
|
1024
|
+
{
|
1025
|
+
"href": "https://fake.trailervote.com/api/issues/e6d11612-01ea-4aee-a747-2c65fd43bce5"
|
1026
|
+
},
|
1027
|
+
{
|
1028
|
+
"href": "https://fake.trailervote.com/api/issues/82435843-54d4-4df9-ab53-3b739f62acf2"
|
1029
|
+
},
|
1030
|
+
{
|
1031
|
+
"href": "https://fake.trailervote.com/api/issues/a414a127-0683-49a5-ae9f-5e626f769ba3"
|
1032
|
+
},
|
1033
|
+
{
|
1034
|
+
"href": "https://fake.trailervote.com/api/issues/576d24d2-1b63-4517-94c7-02c8f092caa3"
|
1035
|
+
},
|
1036
|
+
{
|
1037
|
+
"href": "https://fake.trailervote.com/api/issues/b20c807a-26aa-4f69-be29-13179aca15bb"
|
1038
|
+
},
|
1039
|
+
{
|
1040
|
+
"href": "https://fake.trailervote.com/api/issues/e1724e19-ee5d-4e82-a57f-09b2aa3f2335"
|
1041
|
+
},
|
1042
|
+
{
|
1043
|
+
"href": "https://fake.trailervote.com/api/issues/cee32434-fe8f-4ecc-9019-cae08a1c8934"
|
1044
|
+
},
|
1045
|
+
{
|
1046
|
+
"href": "https://fake.trailervote.com/api/issues/83032151-71ce-4b52-b6b3-ddddf8a6be53"
|
1047
|
+
},
|
1048
|
+
{
|
1049
|
+
"href": "https://fake.trailervote.com/api/issues/bf7b2cf6-3a5d-4d9a-a2fb-2d28edcb52cb"
|
1050
|
+
},
|
1051
|
+
{
|
1052
|
+
"href": "https://fake.trailervote.com/api/issues/bccd36a8-5a38-4bbd-b32f-df651a126791"
|
1053
|
+
},
|
1054
|
+
{
|
1055
|
+
"href": "https://fake.trailervote.com/api/issues/30ed862e-3d70-4e93-9fed-4a192d3c74d2"
|
1056
|
+
},
|
1057
|
+
{
|
1058
|
+
"href": "https://fake.trailervote.com/api/issues/6eb50aa9-a228-4237-a3b4-02beebda98fa"
|
1059
|
+
},
|
1060
|
+
{
|
1061
|
+
"href": "https://fake.trailervote.com/api/issues/d908cabc-728c-471f-8e72-e9108de11daa"
|
1062
|
+
},
|
1063
|
+
{
|
1064
|
+
"href": "https://fake.trailervote.com/api/issues/78512e19-3d30-4261-89ff-9c6ed2bf5fad"
|
1065
|
+
},
|
1066
|
+
{
|
1067
|
+
"href": "https://fake.trailervote.com/api/issues/297ec17a-9c48-4980-ad8b-691677d25911"
|
1068
|
+
},
|
1069
|
+
{
|
1070
|
+
"href": "https://fake.trailervote.com/api/issues/1eb1a874-ebe4-4f09-8bae-0bb77f1fe670"
|
1071
|
+
},
|
1072
|
+
{
|
1073
|
+
"href": "https://fake.trailervote.com/api/issues/3b5dbb6d-a2b9-492b-907e-2d464fb27238"
|
1074
|
+
},
|
1075
|
+
{
|
1076
|
+
"href": "https://fake.trailervote.com/api/issues/aac86c17-8f66-49bd-9b70-5c7080c4c73f"
|
1077
|
+
},
|
1078
|
+
{
|
1079
|
+
"href": "https://fake.trailervote.com/api/issues/a272d486-07f9-4564-bf83-3d56021b4ab8"
|
1080
|
+
},
|
1081
|
+
{
|
1082
|
+
"href": "https://fake.trailervote.com/api/issues/e9a40503-245e-4d7b-ac3a-ca8e08f482b8"
|
1083
|
+
},
|
1084
|
+
{
|
1085
|
+
"href": "https://fake.trailervote.com/api/issues/fa29403c-8974-4b89-bda1-d541cd323114"
|
1086
|
+
},
|
1087
|
+
{
|
1088
|
+
"href": "https://fake.trailervote.com/api/issues/2fa8b13b-0013-4bf0-8d3d-eb2d5e1d5f5b"
|
1089
|
+
},
|
1090
|
+
{
|
1091
|
+
"href": "https://fake.trailervote.com/api/issues/f977181f-799f-469f-a57a-f25ed82c9d3e"
|
1092
|
+
},
|
1093
|
+
{
|
1094
|
+
"href": "https://fake.trailervote.com/api/issues/4d5d1058-022e-4bc7-83ec-96959922b806"
|
1095
|
+
},
|
1096
|
+
{
|
1097
|
+
"href": "https://fake.trailervote.com/api/issues/5e117c77-d401-4bc0-8de4-a48049ce5426"
|
1098
|
+
},
|
1099
|
+
{
|
1100
|
+
"href": "https://fake.trailervote.com/api/issues/51040942-a1fb-4192-87cc-53e96c9c2130"
|
1101
|
+
},
|
1102
|
+
{
|
1103
|
+
"href": "https://fake.trailervote.com/api/issues/2c971616-c0f3-4fb3-bfcc-225a561b4162"
|
1104
|
+
},
|
1105
|
+
{
|
1106
|
+
"href": "https://fake.trailervote.com/api/issues/93212dd8-1a4d-4a1a-b5fc-1d5fbaa0ab7a"
|
1107
|
+
},
|
1108
|
+
{
|
1109
|
+
"href": "https://fake.trailervote.com/api/issues/17dd3779-76de-4e92-b972-0a53021c95f7"
|
1110
|
+
},
|
1111
|
+
{
|
1112
|
+
"href": "https://fake.trailervote.com/api/issues/7110fcb9-0c09-46f7-bf45-4e252fff6bb0"
|
1113
|
+
},
|
1114
|
+
{
|
1115
|
+
"href": "https://fake.trailervote.com/api/issues/c90f988c-b6b8-40ec-b82d-454fbefbd25e"
|
1116
|
+
},
|
1117
|
+
{
|
1118
|
+
"href": "https://fake.trailervote.com/api/issues/ec60c6ba-a2ba-42dc-9b9e-a8a1ec3eb1db"
|
1119
|
+
},
|
1120
|
+
{
|
1121
|
+
"href": "https://fake.trailervote.com/api/issues/bf486edf-3345-42c1-8e7d-bb84cbeef0f9"
|
1122
|
+
},
|
1123
|
+
{
|
1124
|
+
"href": "https://fake.trailervote.com/api/issues/74df5090-84f6-4a85-9f39-abcefed87cb5"
|
1125
|
+
},
|
1126
|
+
{
|
1127
|
+
"href": "https://fake.trailervote.com/api/issues/c4de53a3-061d-4ab3-a7de-d098c33d1fd1"
|
1128
|
+
},
|
1129
|
+
{
|
1130
|
+
"href": "https://fake.trailervote.com/api/issues/de198e2b-4775-45bb-8cb0-a88b672bea59"
|
1131
|
+
},
|
1132
|
+
{
|
1133
|
+
"href": "https://fake.trailervote.com/api/issues/0e2a1bac-bdbb-4806-8a5f-93ff56d7b940"
|
1134
|
+
},
|
1135
|
+
{
|
1136
|
+
"href": "https://fake.trailervote.com/api/issues/6d72277d-3309-4a23-b24d-d3dec2b5cdda"
|
1137
|
+
},
|
1138
|
+
{
|
1139
|
+
"href": "https://fake.trailervote.com/api/issues/dd13080b-a793-4a4a-b7e3-a3cd4da70782"
|
1140
|
+
},
|
1141
|
+
{
|
1142
|
+
"href": "https://fake.trailervote.com/api/issues/f2a1282b-ad6c-4781-bf23-61041d951673"
|
1143
|
+
},
|
1144
|
+
{
|
1145
|
+
"href": "https://fake.trailervote.com/api/issues/39f23b2c-0bf0-4ce8-aef4-e3f7e94cae5c"
|
1146
|
+
},
|
1147
|
+
{
|
1148
|
+
"href": "https://fake.trailervote.com/api/issues/1dda5d3d-6b85-4276-8bf1-0fd1187e4258"
|
1149
|
+
},
|
1150
|
+
{
|
1151
|
+
"href": "https://fake.trailervote.com/api/issues/afce588c-4f19-482c-a435-ce3449c75779"
|
1152
|
+
},
|
1153
|
+
{
|
1154
|
+
"href": "https://fake.trailervote.com/api/issues/618d0439-aca8-4e74-b0c9-b8210c1adea9"
|
1155
|
+
},
|
1156
|
+
{
|
1157
|
+
"href": "https://fake.trailervote.com/api/issues/887c6a2b-aade-4504-9d3d-a5a1331f91e8"
|
1158
|
+
}
|
1159
|
+
],
|
1160
|
+
"_links": {}
|
1161
|
+
}
|
1162
|
+
}
|