diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 000000000..424e46532 Binary files /dev/null and b/.DS_Store differ diff --git a/.gitignore b/.gitignore new file mode 100644 index 000000000..e7299cf62 --- /dev/null +++ b/.gitignore @@ -0,0 +1,31 @@ +# See https://help.github.com/articles/ignoring-files for more about ignoring files. +# +# If you find yourself ignoring temporary files generated by your text editor +# or operating system, you probably want to add a global ignore instead: +# git config --global core.excludesfile '~/.gitignore_global' + +# Ignore bundler config. +/.bundle +coverage/* + +# Ignore all logfiles and tempfiles. +/log/* +/tmp/* +!/log/.keep +!/tmp/.keep + +# Ignore uploaded files in development +/storage/* +!/storage/.keep + +/node_modules +/yarn-error.log + +/public/assets +.byebug_history + +# Ignore master key for decrypting credentials and more. +/config/master.key + +# Ignore .env file +.env diff --git a/Gemfile b/Gemfile new file mode 100644 index 000000000..5e023fd4d --- /dev/null +++ b/Gemfile @@ -0,0 +1,91 @@ +source 'https://rubygems.org' +git_source(:github) { |repo| "https://github.com/#{repo}.git" } + +ruby '2.5.1' + +# Bundle edge Rails instead: gem 'rails', github: 'rails/rails' +gem 'rails', '~> 5.2.1' +# Use postgresql as the database for Active Record +gem 'pg', '>= 0.18', '< 2.0' +# Use Puma as the app server +gem 'puma', '~> 3.11' +# Use SCSS for stylesheets +gem 'sass-rails', '~> 5.0' +# Use Uglifier as compressor for JavaScript assets + gem 'uglifier', '>= 1.3.0' + +gem 'httparty' +gem 'will_paginate', '>=3.1' +gem 'will_paginate-bootstrap' +gem 'dotenv-rails' +# See https://github.com/rails/execjs#readme for more supported runtimes +# gem 'mini_racer', platforms: :ruby + +# Use CoffeeScript for .coffee assets and views +# gem 'coffee-rails', '~> 4.2' +# Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks +gem 'turbolinks', '~> 5' +# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder +gem 'jbuilder', '~> 2.5' +# Use Redis adapter to run Action Cable in production +# gem 'redis', '~> 4.0' +# Use ActiveModel has_secure_password +# gem 'bcrypt', '~> 3.1.7' + +# Use ActiveStorage variant +# gem 'mini_magick', '~> 4.8' + +# Use Capistrano for deployment +# gem 'capistrano-rails', group: :development +#gem 'kaminari' +# Reduces boot times through caching; required in config/boot.rb +gem 'bootsnap', '>= 1.1.0', require: false +gem 'bootstrap', '~> 4.1.3' +gem 'jquery-rails' +gem 'sprockets-rails' +#gem 'api-pagination' + +group :development, :test do + # Call 'byebug' anywhere in the code to stop execution and get a debugger console + gem 'byebug', platforms: [:mri, :mingw, :x64_mingw] +end + +group :development do + # Access an interactive console on exception pages or by calling 'console' anywhere in the code. + gem 'web-console', '>= 3.3.0' + gem 'listen', '>= 3.0.5', '< 3.2' + # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring + gem 'spring' + gem 'spring-watcher-listen', '~> 2.0.0' + gem 'minitest-vcr' + gem 'webmock' +end + +group :test do + # Adds support for Capybara system testing and selenium driver + gem 'capybara', '>= 2.15' + gem 'selenium-webdriver' + # Easy installation and use of chromedriver to run system tests with Chrome + gem 'chromedriver-helper' +end + +# Windows does not include zoneinfo files, so bundle the tzinfo-data gem +gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby] + + +gem 'jquery-turbolinks' +group :development, :test do + gem 'pry-rails' +end + +group :development do + gem 'better_errors' + gem 'binding_of_caller' + gem 'guard' + gem 'guard-minitest' +end + +group :test do + gem 'minitest-rails' + gem 'minitest-reporters' +end diff --git a/Gemfile.lock b/Gemfile.lock new file mode 100644 index 000000000..8f81f769d --- /dev/null +++ b/Gemfile.lock @@ -0,0 +1,311 @@ +GEM + remote: https://rubygems.org/ + specs: + actioncable (5.2.1) + actionpack (= 5.2.1) + nio4r (~> 2.0) + websocket-driver (>= 0.6.1) + actionmailer (5.2.1) + actionpack (= 5.2.1) + actionview (= 5.2.1) + activejob (= 5.2.1) + mail (~> 2.5, >= 2.5.4) + rails-dom-testing (~> 2.0) + actionpack (5.2.1) + actionview (= 5.2.1) + activesupport (= 5.2.1) + rack (~> 2.0) + rack-test (>= 0.6.3) + rails-dom-testing (~> 2.0) + rails-html-sanitizer (~> 1.0, >= 1.0.2) + actionview (5.2.1) + activesupport (= 5.2.1) + builder (~> 3.1) + erubi (~> 1.4) + rails-dom-testing (~> 2.0) + rails-html-sanitizer (~> 1.0, >= 1.0.3) + activejob (5.2.1) + activesupport (= 5.2.1) + globalid (>= 0.3.6) + activemodel (5.2.1) + activesupport (= 5.2.1) + activerecord (5.2.1) + activemodel (= 5.2.1) + activesupport (= 5.2.1) + arel (>= 9.0) + activestorage (5.2.1) + actionpack (= 5.2.1) + activerecord (= 5.2.1) + marcel (~> 0.3.1) + activesupport (5.2.1) + concurrent-ruby (~> 1.0, >= 1.0.2) + i18n (>= 0.7, < 2) + minitest (~> 5.1) + tzinfo (~> 1.1) + addressable (2.5.2) + public_suffix (>= 2.0.2, < 4.0) + ansi (1.5.0) + archive-zip (0.11.0) + io-like (~> 0.3.0) + arel (9.0.0) + autoprefixer-rails (9.3.1) + execjs + better_errors (2.5.0) + coderay (>= 1.0.0) + erubi (>= 1.0.0) + rack (>= 0.9.0) + bindex (0.5.0) + binding_of_caller (0.8.0) + debug_inspector (>= 0.0.1) + bootsnap (1.3.2) + msgpack (~> 1.0) + bootstrap (4.1.3) + autoprefixer-rails (>= 6.0.3) + popper_js (>= 1.12.9, < 2) + sass (>= 3.5.2) + builder (3.2.3) + byebug (10.0.2) + capybara (3.10.0) + addressable + mini_mime (>= 0.1.3) + nokogiri (~> 1.8) + rack (>= 1.6.0) + rack-test (>= 0.6.3) + regexp_parser (~> 1.2) + xpath (~> 3.2) + childprocess (0.9.0) + ffi (~> 1.0, >= 1.0.11) + chromedriver-helper (2.1.0) + archive-zip (~> 0.10) + nokogiri (~> 1.8) + coderay (1.1.2) + concurrent-ruby (1.0.5) + crack (0.4.3) + safe_yaml (~> 1.0.0) + crass (1.0.4) + debug_inspector (0.0.3) + dotenv (2.5.0) + dotenv-rails (2.5.0) + dotenv (= 2.5.0) + railties (>= 3.2, < 6.0) + erubi (1.7.1) + execjs (2.7.0) + ffi (1.9.25) + formatador (0.2.5) + globalid (0.4.1) + activesupport (>= 4.2.0) + guard (2.14.2) + formatador (>= 0.2.4) + listen (>= 2.7, < 4.0) + lumberjack (>= 1.0.12, < 2.0) + nenv (~> 0.1) + notiffany (~> 0.0) + pry (>= 0.9.12) + shellany (~> 0.0) + thor (>= 0.18.1) + guard-compat (1.2.1) + guard-minitest (2.4.6) + guard-compat (~> 1.2) + minitest (>= 3.0) + hashdiff (0.3.7) + httparty (0.16.2) + multi_xml (>= 0.5.2) + i18n (1.1.1) + concurrent-ruby (~> 1.0) + io-like (0.3.0) + jbuilder (2.7.0) + activesupport (>= 4.2.0) + multi_json (>= 1.2) + jquery-rails (4.3.3) + rails-dom-testing (>= 1, < 3) + railties (>= 4.2.0) + thor (>= 0.14, < 2.0) + jquery-turbolinks (2.1.0) + railties (>= 3.1.0) + turbolinks + listen (3.1.5) + rb-fsevent (~> 0.9, >= 0.9.4) + rb-inotify (~> 0.9, >= 0.9.7) + ruby_dep (~> 1.2) + loofah (2.2.3) + crass (~> 1.0.2) + nokogiri (>= 1.5.9) + lumberjack (1.0.13) + mail (2.7.1) + mini_mime (>= 0.1.1) + marcel (0.3.3) + mimemagic (~> 0.3.2) + method_source (0.9.0) + mimemagic (0.3.2) + mini_mime (1.0.1) + mini_portile2 (2.3.0) + minispec-metadata (2.0.0) + minitest + minitest (5.11.3) + minitest-rails (3.0.0) + minitest (~> 5.8) + railties (~> 5.0) + minitest-reporters (1.3.5) + ansi + builder + minitest (>= 5.0) + ruby-progressbar + minitest-vcr (1.4.0) + minispec-metadata (~> 2.0) + minitest (>= 4.7.5) + vcr (>= 2.9) + msgpack (1.2.4) + multi_json (1.13.1) + multi_xml (0.6.0) + nenv (0.3.0) + nio4r (2.3.1) + nokogiri (1.8.5) + mini_portile2 (~> 2.3.0) + notiffany (0.1.1) + nenv (~> 0.1) + shellany (~> 0.0) + pg (1.1.3) + popper_js (1.14.3) + pry (0.11.3) + coderay (~> 1.1.0) + method_source (~> 0.9.0) + pry-rails (0.3.6) + pry (>= 0.10.4) + public_suffix (3.0.3) + puma (3.12.0) + rack (2.0.5) + rack-test (1.1.0) + rack (>= 1.0, < 3) + rails (5.2.1) + actioncable (= 5.2.1) + actionmailer (= 5.2.1) + actionpack (= 5.2.1) + actionview (= 5.2.1) + activejob (= 5.2.1) + activemodel (= 5.2.1) + activerecord (= 5.2.1) + activestorage (= 5.2.1) + activesupport (= 5.2.1) + bundler (>= 1.3.0) + railties (= 5.2.1) + sprockets-rails (>= 2.0.0) + rails-dom-testing (2.0.3) + activesupport (>= 4.2.0) + nokogiri (>= 1.6) + rails-html-sanitizer (1.0.4) + loofah (~> 2.2, >= 2.2.2) + railties (5.2.1) + actionpack (= 5.2.1) + activesupport (= 5.2.1) + method_source + rake (>= 0.8.7) + thor (>= 0.19.0, < 2.0) + rake (12.3.1) + rb-fsevent (0.10.3) + rb-inotify (0.9.10) + ffi (>= 0.5.0, < 2) + regexp_parser (1.2.0) + ruby-progressbar (1.10.0) + ruby_dep (1.5.0) + rubyzip (1.2.2) + safe_yaml (1.0.4) + sass (3.6.0) + sass-listen (~> 4.0.0) + sass-listen (4.0.0) + rb-fsevent (~> 0.9, >= 0.9.4) + rb-inotify (~> 0.9, >= 0.9.7) + sass-rails (5.0.7) + railties (>= 4.0.0, < 6) + sass (~> 3.1) + sprockets (>= 2.8, < 4.0) + sprockets-rails (>= 2.0, < 4.0) + tilt (>= 1.1, < 3) + selenium-webdriver (3.14.1) + childprocess (~> 0.5) + rubyzip (~> 1.2, >= 1.2.2) + shellany (0.0.1) + spring (2.0.2) + activesupport (>= 4.2) + spring-watcher-listen (2.0.1) + listen (>= 2.7, < 4.0) + spring (>= 1.2, < 3.0) + sprockets (3.7.2) + concurrent-ruby (~> 1.0) + rack (> 1, < 3) + sprockets-rails (3.2.1) + actionpack (>= 4.0) + activesupport (>= 4.0) + sprockets (>= 3.0.0) + thor (0.20.0) + thread_safe (0.3.6) + tilt (2.0.8) + turbolinks (5.2.0) + turbolinks-source (~> 5.2) + turbolinks-source (5.2.0) + tzinfo (1.2.5) + thread_safe (~> 0.1) + uglifier (4.1.19) + execjs (>= 0.3.0, < 3) + vcr (4.0.0) + web-console (3.7.0) + actionview (>= 5.0) + activemodel (>= 5.0) + bindex (>= 0.4.0) + railties (>= 5.0) + webmock (3.4.2) + addressable (>= 2.3.6) + crack (>= 0.3.2) + hashdiff + websocket-driver (0.7.0) + websocket-extensions (>= 0.1.0) + websocket-extensions (0.1.3) + will_paginate (3.1.6) + will_paginate-bootstrap (1.0.1) + will_paginate (>= 3.0.3) + xpath (3.2.0) + nokogiri (~> 1.8) + +PLATFORMS + ruby + +DEPENDENCIES + better_errors + binding_of_caller + bootsnap (>= 1.1.0) + bootstrap (~> 4.1.3) + byebug + capybara (>= 2.15) + chromedriver-helper + dotenv-rails + guard + guard-minitest + httparty + jbuilder (~> 2.5) + jquery-rails + jquery-turbolinks + listen (>= 3.0.5, < 3.2) + minitest-rails + minitest-reporters + minitest-vcr + pg (>= 0.18, < 2.0) + pry-rails + puma (~> 3.11) + rails (~> 5.2.1) + sass-rails (~> 5.0) + selenium-webdriver + spring + spring-watcher-listen (~> 2.0.0) + sprockets-rails + turbolinks (~> 5) + tzinfo-data + uglifier (>= 1.3.0) + web-console (>= 3.3.0) + webmock + will_paginate (>= 3.1) + will_paginate-bootstrap + +RUBY VERSION + ruby 2.5.1p57 + +BUNDLED WITH + 1.16.6 diff --git a/Guardfile b/Guardfile new file mode 100644 index 000000000..e34f706f4 --- /dev/null +++ b/Guardfile @@ -0,0 +1,9 @@ +guard :minitest, autorun: false, spring: true do + watch(%r{^app/(.+).rb$}) { |m| "test/#{m[1]}_test.rb" } + watch(%r{^app/controllers/application_controller.rb$}) { 'test/controllers' } + watch(%r{^app/controllers/(.+)_controller.rb$}) { |m| "test/integration/#{m[1]}_test.rb" } + watch(%r{^app/views/(.+)_mailer/.+}) { |m| "test/mailers/#{m[1]}_mailer_test.rb" } + watch(%r{^lib/(.+).rb$}) { |m| "test/lib/#{m[1]}_test.rb" } + watch(%r{^test/.+_test.rb$}) + watch(%r{^test/test_helper.rb$}) { 'test' } +end diff --git a/README.md b/README.md index d76b81007..7db80e4ca 100644 --- a/README.md +++ b/README.md @@ -1,105 +1,24 @@ -# API Muncher: Recipe API Consumer +# README -## At a Glance +This README would normally document whatever steps are necessary to get the +application up and running. -- Individual, [stage 2](https://github.com/Ada-Developers-Academy/pedagogy/blob/master/rule-of-three.md#stage-2) project -- Due **before class, Mon 11/5** +Things you may want to cover: -## Learning Goals: +* Ruby version -- Configure an API for consumption -- Create authenticated API requests using HTTParty -- Consume JSON responses from an API -- Map response to application-specific data -- Separate API logic from application logic +* System dependencies -## Objective +* Configuration -We will create a web application that displays recipes based on a search term. We will utilize an API from Edamam called the [Recipe Search API](https://developer.edamam.com/edamam-recipe-api). +* Database creation -## Getting Started +* Database initialization -Before you start writing _any_ code: +* How to run the test suite -- Explore the API documentation to become familiar with the request(s) you can make -- Create a Trello Board listing the features you will need to add and use it to track the progress of your app. +* Services (job queues, cache servers, search engines, etc.) -Once you've explored the API docs, this project: +* Deployment instructions -- requires you to create a Rails application - - conform to Rails conventions on naming and inflection - - by using `rails new .` you will create a new rails app _inside_ of the fork folder instead of creating a _new_ folder for your rails app - - [Set `local: true` as default for `form_with` in Rails 5](https://stackoverflow.com/questions/47822826/set-local-true-as-default-for-form-with-in-rails-5/51666415#51666415) -- Use better_errors for debugging purposes -- Deploy your completed app to Heroku - - -## Requirements - -### Search - -- As a user, when I can type a search term into a text input and submit it, then the web app: - - Makes a request to the Edamam Recipe API using the search term - - Displays the results in a list - -### List View - -- As a user, when I look at the list of recipes that were the result of a search, then the web app: - - shows a **paged** list of recipes for a given search term, _ten at a time_ - - shows the name of the recipe and the corresponding photo - - shows next to within each listed recipe a link to that recipe's detail page - -### Show View - -- As a user, when I look at a recipe's detail page, then the web app shows the following details about the individual recipe: - - Name - - Link to the original recipe (opens in a new tab) - - Ingredients - - Dietary information - -### Non-functional Requirements - -- Follow the requirements of attribution to Edamam, as required by their Terms and Conditions - - [Official documentation from Edamam on attribution](https://developer.edamam.com/attribution) -- Create thorough tests for your any API Wrappers, classes, and controllers using VCR -- As a user, when I interact with the site and there is a problem, then I can see an error message detailing what the problem is and what I should do - - As a user, when I put in an incorrect parameter for an individual recipe in the browser's address bar, then the site reports a friendly error explaining that this recipe doesn't exist, and doesn't show an exception - -## Important Notes - -- How will you go from a list of recipes pulled down from an API, to being able to view a specific recipe in detail? Take time to consider your answer, write down the steps, and make a plan. Then, look at the API documentation to understand the detail of how you will execute it. Use Postman and your debugging skills to aggressively check what your requests look like in order to get specific recipe detail data. **Edamam's API is not RESTful**; this is not trivial. You'll have to use some clever code to get this to work! Be patient, and you'll get there. -- Using this API as a developer limits the number of API calls in a month to 5000. This means that we must try to minimize API calls for testing purposes as much as possible, to ensure you do not exceed this number of API calls in the one week of development we have. - -## Optional Enhancements - -- Keep track of most recent search terms and allow users to return to those searches -- Implement an OAuth strategy using Google - - Allow users to save recipes to a "favorites" section that they can return to -- Provide checkboxes or other controls to limit the search to options such as: - - Peanut Free - - Soy Free - - High Protein - - Etc - -### Optional Wireframes - -You have creative control over the design and layout of this project. Below are optional wireframes you may use. It is not a requirement that you do. - -### Homepage - - ![Splash Page Wireframe](assets/Muncher_splash_wireframe.png ) - -### Results Page - - ![Results Page Wireframe](assets/muncher_results_wireframe.png ) - -### Recipe Show Page - - ![Results Page Wireframe](assets/muncher_recipe_wireframe.png ) - - -Can you make your layout responsive? When the screen width shrinks to a medium screen, have a row with only two recipes. On a small screen width, have only a single recipe per line. - -## What Instructors Are Looking For - -Check out the [feedback template](feedback.md) which lists the items instructors will be looking for as they evaluate your project. +* ... diff --git a/Rakefile b/Rakefile new file mode 100644 index 000000000..e85f91391 --- /dev/null +++ b/Rakefile @@ -0,0 +1,6 @@ +# Add your own tasks in files placed in lib/tasks ending in .rake, +# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake. + +require_relative 'config/application' + +Rails.application.load_tasks diff --git a/app/.DS_Store b/app/.DS_Store new file mode 100644 index 000000000..2564ef96e Binary files /dev/null and b/app/.DS_Store differ diff --git a/app/assets/.DS_Store b/app/assets/.DS_Store new file mode 100644 index 000000000..5c3c6c2f9 Binary files /dev/null and b/app/assets/.DS_Store differ diff --git a/app/assets/config/manifest.js b/app/assets/config/manifest.js new file mode 100644 index 000000000..b16e53d6d --- /dev/null +++ b/app/assets/config/manifest.js @@ -0,0 +1,3 @@ +//= link_tree ../images +//= link_directory ../javascripts .js +//= link_directory ../stylesheets .css diff --git a/app/assets/images/.keep b/app/assets/images/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/app/assets/images/anise-aroma-art-277253.jpg b/app/assets/images/anise-aroma-art-277253.jpg new file mode 100644 index 000000000..a577a1b0f Binary files /dev/null and b/app/assets/images/anise-aroma-art-277253.jpg differ diff --git a/app/assets/javascripts/application.js b/app/assets/javascripts/application.js new file mode 100644 index 000000000..659d65411 --- /dev/null +++ b/app/assets/javascripts/application.js @@ -0,0 +1,80 @@ +// This is a manifest file that'll be compiled into application.js, which will include all the files +// listed below. +// +// Any JavaScript/Coffee file within this directory, lib/assets/javascripts, or any plugin's +// vendor/assets/javascripts directory can be referenced here using a relative path. +// +// It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the +// compiled file. JavaScript code in this file should be added after the last require_* statement. +// +// Read Sprockets README (https://github.com/rails/sprockets#sprockets-directives) for details +about supported directives. + = require jquery3 + = require popper + = require bootstrap-sprockets + + += require rails-ujs += require activestorage += require turbolinks += require_tree . +function searchRecipes(){ + + //grab the search term + const searchM = document.querySelector('#searchBox').value; + + //grab the url +const endpoint = 'https://api.edamam.com/search?q='+searchM+'&app_id=53c99899&app_key=5bcac43624cd4fde163db0d5b37859e3&from=0&to=48'; + //set up the ajax + $.ajax({ + url: endpoint, + Accept: 'application/json', + Headers: {'Api-User-Agent': 'Search-Here'}, + ContentType: "application/x-www-form-urlencoded", + type: 'GET', + data: {}, + dataType: 'json', + success: function(data){ + //get the recipe label + var label = ''; + //get the image + var image =''; + //create a button + var searchButton = ''; + //get the recipe source + var source = ''; + + var detail = ''; + //set up the variables + var url = ''; + + function reset(){ + //grab what I want to reset/ clear + //clear the field + var childRemove = $('.results').remove(); + return childRemove; + } + reset(); + + for(var i =0; i+label+

'+label+'

From '+source+'
'); + + $('.displaySearch').append(results); + } + + }, + error:function(err){ + alert('sorry, something is wrong!'); + }, + }); + +} + +//line that makes the code show up +document.getElementById('search').addEventListener('click', searchRecipes); diff --git a/app/assets/javascripts/cable.js b/app/assets/javascripts/cable.js new file mode 100644 index 000000000..739aa5f02 --- /dev/null +++ b/app/assets/javascripts/cable.js @@ -0,0 +1,13 @@ +// Action Cable provides the framework to deal with WebSockets in Rails. +// You can generate new channels where WebSocket features live using the `rails generate channel` command. +// +//= require action_cable +//= require_self +//= require_tree ./channels + +(function() { + this.App || (this.App = {}); + + App.cable = ActionCable.createConsumer(); + +}).call(this); diff --git a/app/assets/javascripts/channels/.keep b/app/assets/javascripts/channels/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/app/assets/javascripts/homepage.js b/app/assets/javascripts/homepage.js new file mode 100644 index 000000000..dee720fac --- /dev/null +++ b/app/assets/javascripts/homepage.js @@ -0,0 +1,2 @@ +// Place all the behaviors and hooks related to the matching controller here. +// All this logic will automatically be available in application.js. diff --git a/app/assets/javascripts/recipes.js b/app/assets/javascripts/recipes.js new file mode 100644 index 000000000..dee720fac --- /dev/null +++ b/app/assets/javascripts/recipes.js @@ -0,0 +1,2 @@ +// Place all the behaviors and hooks related to the matching controller here. +// All this logic will automatically be available in application.js. diff --git a/app/assets/stylesheets/application.scss b/app/assets/stylesheets/application.scss new file mode 100644 index 000000000..8b1378917 --- /dev/null +++ b/app/assets/stylesheets/application.scss @@ -0,0 +1 @@ + diff --git a/app/assets/stylesheets/homepage.scss b/app/assets/stylesheets/homepage.scss new file mode 100644 index 000000000..cd889eb4c --- /dev/null +++ b/app/assets/stylesheets/homepage.scss @@ -0,0 +1,8 @@ +// Place all the styles related to the homepage controller here. +// They will automatically be included in application.css. +// You can use Sass (SCSS) here: http://sass-lang.com/ +html{ + // background-color: #390224; + background: url('anise-aroma-art-277253.jpg')no-repeat 60% 60% fixed; + font-family: 'Montserrat', Helvetica, serif; +} diff --git a/app/assets/stylesheets/recipes.scss b/app/assets/stylesheets/recipes.scss new file mode 100644 index 000000000..ae9313b1e --- /dev/null +++ b/app/assets/stylesheets/recipes.scss @@ -0,0 +1,10 @@ +// Place all the styles related to the recipes controller here. +// They will automatically be included in application.css. +// You can use Sass (SCSS) here: http://sass-lang.com/ + + + +// /* Custom bootstrap variables must be set or imported *before* bootstrap. */ +// @import "bootstrap"; +// /* Import scss content */ +// @import "**/*"; diff --git a/app/channels/application_cable/channel.rb b/app/channels/application_cable/channel.rb new file mode 100644 index 000000000..d67269728 --- /dev/null +++ b/app/channels/application_cable/channel.rb @@ -0,0 +1,4 @@ +module ApplicationCable + class Channel < ActionCable::Channel::Base + end +end diff --git a/app/channels/application_cable/connection.rb b/app/channels/application_cable/connection.rb new file mode 100644 index 000000000..0ff5442f4 --- /dev/null +++ b/app/channels/application_cable/connection.rb @@ -0,0 +1,4 @@ +module ApplicationCable + class Connection < ActionCable::Connection::Base + end +end diff --git a/app/controllers/application_controller.rb b/app/controllers/application_controller.rb new file mode 100644 index 000000000..09705d12a --- /dev/null +++ b/app/controllers/application_controller.rb @@ -0,0 +1,2 @@ +class ApplicationController < ActionController::Base +end diff --git a/app/controllers/concerns/.keep b/app/controllers/concerns/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/app/controllers/homepage_controller.rb b/app/controllers/homepage_controller.rb new file mode 100644 index 000000000..3754728b9 --- /dev/null +++ b/app/controllers/homepage_controller.rb @@ -0,0 +1,4 @@ +class HomepageController < ApplicationController + def index + end +end diff --git a/app/controllers/recipes_controller.rb b/app/controllers/recipes_controller.rb new file mode 100644 index 000000000..db840cd60 --- /dev/null +++ b/app/controllers/recipes_controller.rb @@ -0,0 +1,21 @@ +class RecipesController < ApplicationController + require 'will_paginate/array' + + + + def index + @recipe_query = params[:q] || "" + # @recipe_query = (params[:q] || "", params[:page]) + @recipes = MuncherApiWrapper.get_recipes(@recipe_query).paginate(:page => params[:page], :per_page => 10) + + #@recipes.all .page params[:page] + + end + + def show + recipe_id = params[:r] + @recipe = MuncherApiWrapper.get_recipe(recipe_id) + # if @recipe.nil? + + end +end diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb new file mode 100644 index 000000000..de6be7945 --- /dev/null +++ b/app/helpers/application_helper.rb @@ -0,0 +1,2 @@ +module ApplicationHelper +end diff --git a/app/helpers/homepage_helper.rb b/app/helpers/homepage_helper.rb new file mode 100644 index 000000000..c5bbfe518 --- /dev/null +++ b/app/helpers/homepage_helper.rb @@ -0,0 +1,2 @@ +module HomepageHelper +end diff --git a/app/helpers/recipes_helper.rb b/app/helpers/recipes_helper.rb new file mode 100644 index 000000000..f526316e2 --- /dev/null +++ b/app/helpers/recipes_helper.rb @@ -0,0 +1,2 @@ +module RecipesHelper +end diff --git a/app/jobs/application_job.rb b/app/jobs/application_job.rb new file mode 100644 index 000000000..a009ace51 --- /dev/null +++ b/app/jobs/application_job.rb @@ -0,0 +1,2 @@ +class ApplicationJob < ActiveJob::Base +end diff --git a/app/mailers/application_mailer.rb b/app/mailers/application_mailer.rb new file mode 100644 index 000000000..286b2239d --- /dev/null +++ b/app/mailers/application_mailer.rb @@ -0,0 +1,4 @@ +class ApplicationMailer < ActionMailer::Base + default from: 'from@example.com' + layout 'mailer' +end diff --git a/app/models/application_record.rb b/app/models/application_record.rb new file mode 100644 index 000000000..10a4cba84 --- /dev/null +++ b/app/models/application_record.rb @@ -0,0 +1,3 @@ +class ApplicationRecord < ActiveRecord::Base + self.abstract_class = true +end diff --git a/app/models/concerns/.keep b/app/models/concerns/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/app/views/homepage/index.html.erb b/app/views/homepage/index.html.erb new file mode 100644 index 000000000..a1b7588d9 --- /dev/null +++ b/app/views/homepage/index.html.erb @@ -0,0 +1,23 @@ + + + + diff --git a/app/views/layouts/application.html.erb b/app/views/layouts/application.html.erb new file mode 100644 index 000000000..00f967958 --- /dev/null +++ b/app/views/layouts/application.html.erb @@ -0,0 +1,15 @@ + + + + ApiMuncher + <% csrf_meta_tags %> + <% csp_meta_tag %> + + <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %> + <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %> + + + + <%= yield %> + + diff --git a/app/views/layouts/mailer.html.erb b/app/views/layouts/mailer.html.erb new file mode 100644 index 000000000..cbd34d2e9 --- /dev/null +++ b/app/views/layouts/mailer.html.erb @@ -0,0 +1,13 @@ + + + + + + + + + <%= yield %> + + diff --git a/app/views/layouts/mailer.text.erb b/app/views/layouts/mailer.text.erb new file mode 100644 index 000000000..37f0bddbd --- /dev/null +++ b/app/views/layouts/mailer.text.erb @@ -0,0 +1 @@ +<%= yield %> diff --git a/app/views/recipes/index.html.erb b/app/views/recipes/index.html.erb new file mode 100644 index 000000000..52ba65e06 --- /dev/null +++ b/app/views/recipes/index.html.erb @@ -0,0 +1,42 @@ + + + +<% if @recipes %> +
+ + <% @recipes.each do |recipe| %> + +
+ Card image cap + +
+
<%=link_to recipe.name, recipe_path(r: recipe.uri) %>
+
+
+ + <% end %> +
+ +<% end %> + + + +<%= will_paginate @recipes, render: BootstrapPagination::Rails %> diff --git a/app/views/recipes/show.html.erb b/app/views/recipes/show.html.erb new file mode 100644 index 000000000..30e47ae4d --- /dev/null +++ b/app/views/recipes/show.html.erb @@ -0,0 +1,58 @@ + + + +
+
+
+ + +

Health Labels

+ + <% @recipe.healthLabels.each.each do |healthLabels| %> + + + <% end %> + +
<%= healthLabels %>
+
+ +
+
+
+ +
+ Card image cap + +
+
<%=link_to @recipe.name, recipe_path(r: @recipe.uri) %>
+
+
+
+ +
+
+ + +

Ingredients List

+ + <% @recipe.ingredientLines.each do |ingredientLine| %> + + + <% end %> + +
<%= ingredientLine %>
+
+ +
+
diff --git a/bin/bundle b/bin/bundle new file mode 100755 index 000000000..f19acf5b5 --- /dev/null +++ b/bin/bundle @@ -0,0 +1,3 @@ +#!/usr/bin/env ruby +ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../Gemfile', __dir__) +load Gem.bin_path('bundler', 'bundle') diff --git a/bin/rails b/bin/rails new file mode 100755 index 000000000..5badb2fde --- /dev/null +++ b/bin/rails @@ -0,0 +1,9 @@ +#!/usr/bin/env ruby +begin + load File.expand_path('../spring', __FILE__) +rescue LoadError => e + raise unless e.message.include?('spring') +end +APP_PATH = File.expand_path('../config/application', __dir__) +require_relative '../config/boot' +require 'rails/commands' diff --git a/bin/rake b/bin/rake new file mode 100755 index 000000000..d87d5f578 --- /dev/null +++ b/bin/rake @@ -0,0 +1,9 @@ +#!/usr/bin/env ruby +begin + load File.expand_path('../spring', __FILE__) +rescue LoadError => e + raise unless e.message.include?('spring') +end +require_relative '../config/boot' +require 'rake' +Rake.application.run diff --git a/bin/setup b/bin/setup new file mode 100755 index 000000000..94fd4d797 --- /dev/null +++ b/bin/setup @@ -0,0 +1,36 @@ +#!/usr/bin/env ruby +require 'fileutils' +include FileUtils + +# path to your application root. +APP_ROOT = File.expand_path('..', __dir__) + +def system!(*args) + system(*args) || abort("\n== Command #{args} failed ==") +end + +chdir APP_ROOT do + # This script is a starting point to setup your application. + # Add necessary setup steps to this file. + + puts '== Installing dependencies ==' + system! 'gem install bundler --conservative' + system('bundle check') || system!('bundle install') + + # Install JavaScript dependencies if using Yarn + # system('bin/yarn') + + # puts "\n== Copying sample files ==" + # unless File.exist?('config/database.yml') + # cp 'config/database.yml.sample', 'config/database.yml' + # end + + puts "\n== Preparing database ==" + system! 'bin/rails db:setup' + + puts "\n== Removing old logs and tempfiles ==" + system! 'bin/rails log:clear tmp:clear' + + puts "\n== Restarting application server ==" + system! 'bin/rails restart' +end diff --git a/bin/spring b/bin/spring new file mode 100755 index 000000000..fb2ec2ebb --- /dev/null +++ b/bin/spring @@ -0,0 +1,17 @@ +#!/usr/bin/env ruby + +# This file loads spring without using Bundler, in order to be fast. +# It gets overwritten when you run the `spring binstub` command. + +unless defined?(Spring) + require 'rubygems' + require 'bundler' + + lockfile = Bundler::LockfileParser.new(Bundler.default_lockfile.read) + spring = lockfile.specs.detect { |spec| spec.name == "spring" } + if spring + Gem.use_paths Gem.dir, Bundler.bundle_path.to_s, *Gem.path + gem 'spring', spring.version + require 'spring/binstub' + end +end diff --git a/bin/update b/bin/update new file mode 100755 index 000000000..58bfaed51 --- /dev/null +++ b/bin/update @@ -0,0 +1,31 @@ +#!/usr/bin/env ruby +require 'fileutils' +include FileUtils + +# path to your application root. +APP_ROOT = File.expand_path('..', __dir__) + +def system!(*args) + system(*args) || abort("\n== Command #{args} failed ==") +end + +chdir APP_ROOT do + # This script is a way to update your development environment automatically. + # Add necessary update steps to this file. + + puts '== Installing dependencies ==' + system! 'gem install bundler --conservative' + system('bundle check') || system!('bundle install') + + # Install JavaScript dependencies if using Yarn + # system('bin/yarn') + + puts "\n== Updating database ==" + system! 'bin/rails db:migrate' + + puts "\n== Removing old logs and tempfiles ==" + system! 'bin/rails log:clear tmp:clear' + + puts "\n== Restarting application server ==" + system! 'bin/rails restart' +end diff --git a/bin/yarn b/bin/yarn new file mode 100755 index 000000000..460dd565b --- /dev/null +++ b/bin/yarn @@ -0,0 +1,11 @@ +#!/usr/bin/env ruby +APP_ROOT = File.expand_path('..', __dir__) +Dir.chdir(APP_ROOT) do + begin + exec "yarnpkg", *ARGV + rescue Errno::ENOENT + $stderr.puts "Yarn executable was not detected in the system." + $stderr.puts "Download Yarn at https://yarnpkg.com/en/docs/install" + exit 1 + end +end diff --git a/config.ru b/config.ru new file mode 100644 index 000000000..f7ba0b527 --- /dev/null +++ b/config.ru @@ -0,0 +1,5 @@ +# This file is used by Rack-based servers to start the application. + +require_relative 'config/environment' + +run Rails.application diff --git a/config/.DS_Store b/config/.DS_Store new file mode 100644 index 000000000..856954701 Binary files /dev/null and b/config/.DS_Store differ diff --git a/config/application.rb b/config/application.rb new file mode 100644 index 000000000..bfbb92eec --- /dev/null +++ b/config/application.rb @@ -0,0 +1,26 @@ +require_relative 'boot' + +require 'rails/all' + +# Require the gems listed in Gemfile, including any gems +# you've limited to :test, :development, or :production. +Bundler.require(*Rails.groups) + +module MuncherApi + class Application < Rails::Application + config.generators do |g| + # Force new test files to be generated in the minitest-spec style + g.test_framework :minitest, spec: true + # Always use .js files, never .coffee + g.javascript_engine :js + end + # Initialize configuration defaults for originally generated Rails version. + config.load_defaults 5.2 + + # Settings in config/environments/* take precedence over those specified here. + # Application configuration can go into files in config/initializers + # -- all .rb files in that directory are automatically loaded after loading + # the framework and any gems in your application. + config.eager_load_paths << Rails.root.join('lib') + end +end diff --git a/config/boot.rb b/config/boot.rb new file mode 100644 index 000000000..b9e460cef --- /dev/null +++ b/config/boot.rb @@ -0,0 +1,4 @@ +ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../Gemfile', __dir__) + +require 'bundler/setup' # Set up gems listed in the Gemfile. +require 'bootsnap/setup' # Speed up boot time by caching expensive operations. diff --git a/config/cable.yml b/config/cable.yml new file mode 100644 index 000000000..bdd38a7f0 --- /dev/null +++ b/config/cable.yml @@ -0,0 +1,10 @@ +development: + adapter: async + +test: + adapter: async + +production: + adapter: redis + url: <%= ENV.fetch("REDIS_URL") { "redis://localhost:6379/1" } %> + channel_prefix: Api-Muncher_production diff --git a/config/credentials.yml.enc b/config/credentials.yml.enc new file mode 100644 index 000000000..7d3e17d1a --- /dev/null +++ b/config/credentials.yml.enc @@ -0,0 +1 @@ +a/jGur9YKOZ4Sy36Lon7JQpy+V76ZHoUW/pwBX/BEoEzUz+ISewxM0UmbdbOa0Rl5gbuuy88RGTdxcWDAJY5p5YF2EWvZt5//szb8aOBdFAa5QP8/4dEvppLMCtLIC65u+l8s3Pr5ixZcqd7oU0YAvpkBp5M0hAX9IMNKXOA/zPszW4nKtGp3v1YDLM3g0fjHi1F2C60y4uY8+IGTysyzlxqEAQNb3vfWzUuj6cC9A7ao0CwOD0VGJa5rxhN5fdQa91+4TjT8Ctgrj5nRxERivO0tuLh4QcxuKb4DWTdsfcO2uGVnQykLED4eKms/0zglgW/QqGDCnP+i8ewTnRl3kMb3U194LXuiwyDGvK0Lb4kDDLzPtQKeHhBrfJd0wcDZ5BAQMeQdCmKcQH6nJ9ZORrabiV7wVK6HUKv--lE4SW6eqe5T+Ov+f--knRUSfUA6GPLHXgGutLueA== \ No newline at end of file diff --git a/config/database.yml b/config/database.yml new file mode 100644 index 000000000..7290c3ce3 --- /dev/null +++ b/config/database.yml @@ -0,0 +1,85 @@ +# PostgreSQL. Versions 9.1 and up are supported. +# +# Install the pg driver: +# gem install pg +# On OS X with Homebrew: +# gem install pg -- --with-pg-config=/usr/local/bin/pg_config +# On OS X with MacPorts: +# gem install pg -- --with-pg-config=/opt/local/lib/postgresql84/bin/pg_config +# On Windows: +# gem install pg +# Choose the win32 build. +# Install PostgreSQL and put its /bin directory on your path. +# +# Configure Using Gemfile +# gem 'pg' +# +default: &default + adapter: postgresql + encoding: unicode + # For details on connection pooling, see Rails configuration guide + # http://guides.rubyonrails.org/configuring.html#database-pooling + pool: <%= ENV.fetch("RAILS_MAX_THREADS") { 5 } %> + +development: + <<: *default + database: Api-Muncher_development + + # The specified database role being used to connect to postgres. + # To create additional roles in postgres see `$ createuser --help`. + # When left blank, postgres will use the default role. This is + # the same name as the operating system user that initialized the database. + #username: Api-Muncher + + # The password associated with the postgres role (username). + #password: + + # Connect on a TCP socket. Omitted by default since the client uses a + # domain socket that doesn't need configuration. Windows does not have + # domain sockets, so uncomment these lines. + #host: localhost + + # The TCP port the server listens on. Defaults to 5432. + # If your server runs on a different port number, change accordingly. + #port: 5432 + + # Schema search path. The server defaults to $user,public + #schema_search_path: myapp,sharedapp,public + + # Minimum log levels, in increasing order: + # debug5, debug4, debug3, debug2, debug1, + # log, notice, warning, error, fatal, and panic + # Defaults to warning. + #min_messages: notice + +# Warning: The database defined as "test" will be erased and +# re-generated from your development database when you run "rake". +# Do not set this db to the same as development or production. +test: + <<: *default + database: Api-Muncher_test + +# As with config/secrets.yml, you never want to store sensitive information, +# like your database password, in your source code. If your source code is +# ever seen by anyone, they now have access to your database. +# +# Instead, provide the password as a unix environment variable when you boot +# the app. Read http://guides.rubyonrails.org/configuring.html#configuring-a-database +# for a full rundown on how to provide these environment variables in a +# production deployment. +# +# On Heroku and other platform providers, you may have a full connection URL +# available as an environment variable. For example: +# +# DATABASE_URL="postgres://myuser:mypass@localhost/somedatabase" +# +# You can use this database configuration with: +# +# production: +# url: <%= ENV['DATABASE_URL'] %> +# +production: + <<: *default + database: Api-Muncher_production + username: Api-Muncher + password: <%= ENV['API-MUNCHER_DATABASE_PASSWORD'] %> diff --git a/config/environment.rb b/config/environment.rb new file mode 100644 index 000000000..426333bb4 --- /dev/null +++ b/config/environment.rb @@ -0,0 +1,5 @@ +# Load the Rails application. +require_relative 'application' + +# Initialize the Rails application. +Rails.application.initialize! diff --git a/config/environments/development.rb b/config/environments/development.rb new file mode 100644 index 000000000..1311e3e4e --- /dev/null +++ b/config/environments/development.rb @@ -0,0 +1,61 @@ +Rails.application.configure do + # Settings specified here will take precedence over those in config/application.rb. + + # In the development environment your application's code is reloaded on + # every request. This slows down response time but is perfect for development + # since you don't have to restart the web server when you make code changes. + config.cache_classes = false + + # Do not eager load code on boot. + config.eager_load = false + + # Show full error reports. + config.consider_all_requests_local = true + + # Enable/disable caching. By default caching is disabled. + # Run rails dev:cache to toggle caching. + if Rails.root.join('tmp', 'caching-dev.txt').exist? + config.action_controller.perform_caching = true + + config.cache_store = :memory_store + config.public_file_server.headers = { + 'Cache-Control' => "public, max-age=#{2.days.to_i}" + } + else + config.action_controller.perform_caching = false + + config.cache_store = :null_store + end + + # Store uploaded files on the local file system (see config/storage.yml for options) + config.active_storage.service = :local + + # Don't care if the mailer can't send. + config.action_mailer.raise_delivery_errors = false + + config.action_mailer.perform_caching = false + + # Print deprecation notices to the Rails logger. + config.active_support.deprecation = :log + + # Raise an error on page load if there are pending migrations. + config.active_record.migration_error = :page_load + + # Highlight code that triggered database queries in logs. + config.active_record.verbose_query_logs = true + + # Debug mode disables concatenation and preprocessing of assets. + # This option may cause significant delays in view rendering with a large + # number of complex assets. + config.assets.debug = true + + # Suppress logger output for asset requests. + config.assets.quiet = true + + # Raises error for missing translations + # config.action_view.raise_on_missing_translations = true + + # Use an evented file watcher to asynchronously detect changes in source code, + # routes, locales, etc. This feature depends on the listen gem. + config.file_watcher = ActiveSupport::EventedFileUpdateChecker +end diff --git a/config/environments/production.rb b/config/environments/production.rb new file mode 100644 index 000000000..336a203fd --- /dev/null +++ b/config/environments/production.rb @@ -0,0 +1,95 @@ +Rails.application.configure do + # Settings specified here will take precedence over those in config/application.rb. + + # Code is not reloaded between requests. + config.cache_classes = true + + # Eager load code on boot. This eager loads most of Rails and + # your application in memory, allowing both threaded web servers + # and those relying on copy on write to perform better. + # Rake tasks automatically ignore this option for performance. + config.eager_load = true + + # Full error reports are disabled and caching is turned on. + config.consider_all_requests_local = false + config.action_controller.perform_caching = true + + # Ensures that a master key has been made available in either ENV["RAILS_MASTER_KEY"] + # or in config/master.key. This key is used to decrypt credentials (and other encrypted files). + # config.require_master_key = true + + # Disable serving static files from the `/public` folder by default since + # Apache or NGINX already handles this. + config.public_file_server.enabled = ENV['RAILS_SERVE_STATIC_FILES'].present? + + # Compress JavaScripts and CSS. + + config.assets.js_compressor = Uglifier.new(harmony: true) + # config.assets.css_compressor = :sass + + # Do not fallback to assets pipeline if a precompiled asset is missed. + config.assets.compile = false + + # `config.assets.precompile` and `config.assets.version` have moved to config/initializers/assets.rb + + # Enable serving of images, stylesheets, and JavaScripts from an asset server. + # config.action_controller.asset_host = 'http://assets.example.com' + + # Specifies the header that your server uses for sending files. + # config.action_dispatch.x_sendfile_header = 'X-Sendfile' # for Apache + # config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for NGINX + + # Store uploaded files on the local file system (see config/storage.yml for options) + config.active_storage.service = :local + + # Mount Action Cable outside main process or domain + # config.action_cable.mount_path = nil + # config.action_cable.url = 'wss://example.com/cable' + # config.action_cable.allowed_request_origins = [ 'http://example.com', /http:\/\/example.*/ ] + + # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies. + # config.force_ssl = true + + # Use the lowest log level to ensure availability of diagnostic information + # when problems arise. + config.log_level = :debug + + # Prepend all log lines with the following tags. + config.log_tags = [ :request_id ] + + # Use a different cache store in production. + # config.cache_store = :mem_cache_store + + # Use a real queuing backend for Active Job (and separate queues per environment) + # config.active_job.queue_adapter = :resque + # config.active_job.queue_name_prefix = "Api-Muncher_#{Rails.env}" + + config.action_mailer.perform_caching = false + + # Ignore bad email addresses and do not raise email delivery errors. + # Set this to true and configure the email server for immediate delivery to raise delivery errors. + # config.action_mailer.raise_delivery_errors = false + + # Enable locale fallbacks for I18n (makes lookups for any locale fall back to + # the I18n.default_locale when a translation cannot be found). + config.i18n.fallbacks = true + + # Send deprecation notices to registered listeners. + config.active_support.deprecation = :notify + + # Use default logging formatter so that PID and timestamp are not suppressed. + config.log_formatter = ::Logger::Formatter.new + + # Use a different logger for distributed setups. + # require 'syslog/logger' + # config.logger = ActiveSupport::TaggedLogging.new(Syslog::Logger.new 'app-name') + + if ENV["RAILS_LOG_TO_STDOUT"].present? + logger = ActiveSupport::Logger.new(STDOUT) + logger.formatter = config.log_formatter + config.logger = ActiveSupport::TaggedLogging.new(logger) + end + + # Do not dump schema after migrations. + config.active_record.dump_schema_after_migration = false +end diff --git a/config/environments/test.rb b/config/environments/test.rb new file mode 100644 index 000000000..0a38fd3ce --- /dev/null +++ b/config/environments/test.rb @@ -0,0 +1,46 @@ +Rails.application.configure do + # Settings specified here will take precedence over those in config/application.rb. + + # The test environment is used exclusively to run your application's + # test suite. You never need to work with it otherwise. Remember that + # your test database is "scratch space" for the test suite and is wiped + # and recreated between test runs. Don't rely on the data there! + config.cache_classes = true + + # Do not eager load code on boot. This avoids loading your whole application + # just for the purpose of running a single test. If you are using a tool that + # preloads Rails for running tests, you may have to set it to true. + config.eager_load = false + + # Configure public file server for tests with Cache-Control for performance. + config.public_file_server.enabled = true + config.public_file_server.headers = { + 'Cache-Control' => "public, max-age=#{1.hour.to_i}" + } + + # Show full error reports and disable caching. + config.consider_all_requests_local = true + config.action_controller.perform_caching = false + + # Raise exceptions instead of rendering exception templates. + config.action_dispatch.show_exceptions = false + + # Disable request forgery protection in test environment. + config.action_controller.allow_forgery_protection = false + + # Store uploaded files on the local file system in a temporary directory + config.active_storage.service = :test + + config.action_mailer.perform_caching = false + + # Tell Action Mailer not to deliver emails to the real world. + # The :test delivery method accumulates sent emails in the + # ActionMailer::Base.deliveries array. + config.action_mailer.delivery_method = :test + + # Print deprecation notices to the stderr. + config.active_support.deprecation = :stderr + + # Raises error for missing translations + # config.action_view.raise_on_missing_translations = true +end diff --git a/config/initializers/application_controller_renderer.rb b/config/initializers/application_controller_renderer.rb new file mode 100644 index 000000000..89d2efab2 --- /dev/null +++ b/config/initializers/application_controller_renderer.rb @@ -0,0 +1,8 @@ +# Be sure to restart your server when you modify this file. + +# ActiveSupport::Reloader.to_prepare do +# ApplicationController.renderer.defaults.merge!( +# http_host: 'example.org', +# https: false +# ) +# end diff --git a/config/initializers/assets.rb b/config/initializers/assets.rb new file mode 100644 index 000000000..4b828e80c --- /dev/null +++ b/config/initializers/assets.rb @@ -0,0 +1,14 @@ +# Be sure to restart your server when you modify this file. + +# Version of your assets, change this if you want to expire all your assets. +Rails.application.config.assets.version = '1.0' + +# Add additional assets to the asset load path. +# Rails.application.config.assets.paths << Emoji.images_path +# Add Yarn node_modules folder to the asset load path. +Rails.application.config.assets.paths << Rails.root.join('node_modules') + +# Precompile additional assets. +# application.js, application.css, and all non-JS/CSS in the app/assets +# folder are already added. +# Rails.application.config.assets.precompile += %w( admin.js admin.css ) diff --git a/config/initializers/backtrace_silencers.rb b/config/initializers/backtrace_silencers.rb new file mode 100644 index 000000000..59385cdf3 --- /dev/null +++ b/config/initializers/backtrace_silencers.rb @@ -0,0 +1,7 @@ +# Be sure to restart your server when you modify this file. + +# You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces. +# Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ } + +# You can also remove all the silencers if you're trying to debug a problem that might stem from framework code. +# Rails.backtrace_cleaner.remove_silencers! diff --git a/config/initializers/content_security_policy.rb b/config/initializers/content_security_policy.rb new file mode 100644 index 000000000..d3bcaa5ec --- /dev/null +++ b/config/initializers/content_security_policy.rb @@ -0,0 +1,25 @@ +# Be sure to restart your server when you modify this file. + +# Define an application-wide content security policy +# For further information see the following documentation +# https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy + +# Rails.application.config.content_security_policy do |policy| +# policy.default_src :self, :https +# policy.font_src :self, :https, :data +# policy.img_src :self, :https, :data +# policy.object_src :none +# policy.script_src :self, :https +# policy.style_src :self, :https + +# # Specify URI for violation reports +# # policy.report_uri "/csp-violation-report-endpoint" +# end + +# If you are using UJS then enable automatic nonce generation +# Rails.application.config.content_security_policy_nonce_generator = -> request { SecureRandom.base64(16) } + +# Report CSP violations to a specified URI +# For further information see the following documentation: +# https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy-Report-Only +# Rails.application.config.content_security_policy_report_only = true diff --git a/config/initializers/cookies_serializer.rb b/config/initializers/cookies_serializer.rb new file mode 100644 index 000000000..5a6a32d37 --- /dev/null +++ b/config/initializers/cookies_serializer.rb @@ -0,0 +1,5 @@ +# Be sure to restart your server when you modify this file. + +# Specify a serializer for the signed and encrypted cookie jars. +# Valid options are :json, :marshal, and :hybrid. +Rails.application.config.action_dispatch.cookies_serializer = :json diff --git a/config/initializers/filter_parameter_logging.rb b/config/initializers/filter_parameter_logging.rb new file mode 100644 index 000000000..4a994e1e7 --- /dev/null +++ b/config/initializers/filter_parameter_logging.rb @@ -0,0 +1,4 @@ +# Be sure to restart your server when you modify this file. + +# Configure sensitive parameters which will be filtered from the log file. +Rails.application.config.filter_parameters += [:password] diff --git a/config/initializers/inflections.rb b/config/initializers/inflections.rb new file mode 100644 index 000000000..ac033bf9d --- /dev/null +++ b/config/initializers/inflections.rb @@ -0,0 +1,16 @@ +# Be sure to restart your server when you modify this file. + +# Add new inflection rules using the following format. Inflections +# are locale specific, and you may define rules for as many different +# locales as you wish. All of these examples are active by default: +# ActiveSupport::Inflector.inflections(:en) do |inflect| +# inflect.plural /^(ox)$/i, '\1en' +# inflect.singular /^(ox)en/i, '\1' +# inflect.irregular 'person', 'people' +# inflect.uncountable %w( fish sheep ) +# end + +# These inflection rules are supported but not enabled by default: +# ActiveSupport::Inflector.inflections(:en) do |inflect| +# inflect.acronym 'RESTful' +# end diff --git a/config/initializers/mime_types.rb b/config/initializers/mime_types.rb new file mode 100644 index 000000000..dc1899682 --- /dev/null +++ b/config/initializers/mime_types.rb @@ -0,0 +1,4 @@ +# Be sure to restart your server when you modify this file. + +# Add new mime types for use in respond_to blocks: +# Mime::Type.register "text/richtext", :rtf diff --git a/config/initializers/wrap_parameters.rb b/config/initializers/wrap_parameters.rb new file mode 100644 index 000000000..bbfc3961b --- /dev/null +++ b/config/initializers/wrap_parameters.rb @@ -0,0 +1,14 @@ +# Be sure to restart your server when you modify this file. + +# This file contains settings for ActionController::ParamsWrapper which +# is enabled by default. + +# Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array. +ActiveSupport.on_load(:action_controller) do + wrap_parameters format: [:json] +end + +# To enable root element in JSON for ActiveRecord objects. +# ActiveSupport.on_load(:active_record) do +# self.include_root_in_json = true +# end diff --git a/config/locales/en.yml b/config/locales/en.yml new file mode 100644 index 000000000..decc5a857 --- /dev/null +++ b/config/locales/en.yml @@ -0,0 +1,33 @@ +# Files in the config/locales directory are used for internationalization +# and are automatically loaded by Rails. If you want to use locales other +# than English, add the necessary files in this directory. +# +# To use the locales, use `I18n.t`: +# +# I18n.t 'hello' +# +# In views, this is aliased to just `t`: +# +# <%= t('hello') %> +# +# To use a different locale, set it with `I18n.locale`: +# +# I18n.locale = :es +# +# This would use the information in config/locales/es.yml. +# +# The following keys must be escaped otherwise they will not be retrieved by +# the default I18n backend: +# +# true, false, on, off, yes, no +# +# Instead, surround them with single quotes. +# +# en: +# 'true': 'foo' +# +# To learn more, please read the Rails Internationalization guide +# available at http://guides.rubyonrails.org/i18n.html. + +en: + hello: "Hello world" diff --git a/config/master.key b/config/master.key new file mode 100644 index 000000000..0ab190d33 --- /dev/null +++ b/config/master.key @@ -0,0 +1 @@ +0ba74c34cfaa58962d077c673f9d046f \ No newline at end of file diff --git a/config/puma.rb b/config/puma.rb new file mode 100644 index 000000000..a5eccf816 --- /dev/null +++ b/config/puma.rb @@ -0,0 +1,34 @@ +# Puma can serve each request in a thread from an internal thread pool. +# The `threads` method setting takes two numbers: a minimum and maximum. +# Any libraries that use thread pools should be configured to match +# the maximum value specified for Puma. Default is set to 5 threads for minimum +# and maximum; this matches the default thread size of Active Record. +# +threads_count = ENV.fetch("RAILS_MAX_THREADS") { 5 } +threads threads_count, threads_count + +# Specifies the `port` that Puma will listen on to receive requests; default is 3000. +# +port ENV.fetch("PORT") { 3000 } + +# Specifies the `environment` that Puma will run in. +# +environment ENV.fetch("RAILS_ENV") { "development" } + +# Specifies the number of `workers` to boot in clustered mode. +# Workers are forked webserver processes. If using threads and workers together +# the concurrency of the application would be max `threads` * `workers`. +# Workers do not work on JRuby or Windows (both of which do not support +# processes). +# +# workers ENV.fetch("WEB_CONCURRENCY") { 2 } + +# Use the `preload_app!` method when specifying a `workers` number. +# This directive tells Puma to first boot the application and load code +# before forking the application. This takes advantage of Copy On Write +# process behavior so workers use less memory. +# +# preload_app! + +# Allow puma to be restarted by `rails restart` command. +plugin :tmp_restart diff --git a/config/routes.rb b/config/routes.rb new file mode 100644 index 000000000..31c4114d9 --- /dev/null +++ b/config/routes.rb @@ -0,0 +1,8 @@ +Rails.application.routes.draw do + # For details on the DSL available within this file, see http://guides.rubyonrails.org/routing.html + root 'homepage#index' + get "/homepage", to: "homepage#index", as: "home" + get "/search", to: "recipes#index", as: "search" + get "/recipe", to: "recipes#show", as: "recipe" + +end diff --git a/config/spring.rb b/config/spring.rb new file mode 100644 index 000000000..9fa7863f9 --- /dev/null +++ b/config/spring.rb @@ -0,0 +1,6 @@ +%w[ + .ruby-version + .rbenv-vars + tmp/restart.txt + tmp/caching-dev.txt +].each { |path| Spring.watch(path) } diff --git a/config/storage.yml b/config/storage.yml new file mode 100644 index 000000000..d32f76e8f --- /dev/null +++ b/config/storage.yml @@ -0,0 +1,34 @@ +test: + service: Disk + root: <%= Rails.root.join("tmp/storage") %> + +local: + service: Disk + root: <%= Rails.root.join("storage") %> + +# Use rails credentials:edit to set the AWS secrets (as aws:access_key_id|secret_access_key) +# amazon: +# service: S3 +# access_key_id: <%= Rails.application.credentials.dig(:aws, :access_key_id) %> +# secret_access_key: <%= Rails.application.credentials.dig(:aws, :secret_access_key) %> +# region: us-east-1 +# bucket: your_own_bucket + +# Remember not to checkin your GCS keyfile to a repository +# google: +# service: GCS +# project: your_project +# credentials: <%= Rails.root.join("path/to/gcs.keyfile") %> +# bucket: your_own_bucket + +# Use rails credentials:edit to set the Azure Storage secret (as azure_storage:storage_access_key) +# microsoft: +# service: AzureStorage +# storage_account_name: your_account_name +# storage_access_key: <%= Rails.application.credentials.dig(:azure_storage, :storage_access_key) %> +# container: your_container_name + +# mirror: +# service: Mirror +# primary: local +# mirrors: [ amazon, google, microsoft ] diff --git a/db/migrate/20181030222216_create_recipes.rb b/db/migrate/20181030222216_create_recipes.rb new file mode 100644 index 000000000..42650a0ba --- /dev/null +++ b/db/migrate/20181030222216_create_recipes.rb @@ -0,0 +1,8 @@ +class CreateRecipes < ActiveRecord::Migration[5.2] + def change + create_table :recipes do |t| + + t.timestamps + end + end +end diff --git a/db/schema.rb b/db/schema.rb new file mode 100644 index 000000000..f87b24843 --- /dev/null +++ b/db/schema.rb @@ -0,0 +1,23 @@ +# This file is auto-generated from the current state of the database. Instead +# of editing this file, please use the migrations feature of Active Record to +# incrementally modify your database, and then regenerate this schema definition. +# +# Note that this schema.rb definition is the authoritative source for your +# database schema. If you need to create the application database on another +# system, you should be using db:schema:load, not running all the migrations +# from scratch. The latter is a flawed and unsustainable approach (the more migrations +# you'll amass, the slower it'll run and the greater likelihood for issues). +# +# It's strongly recommended that you check this file into your version control system. + +ActiveRecord::Schema.define(version: 2018_10_30_222216) do + + # These are extensions that must be enabled in order to support this database + enable_extension "plpgsql" + + create_table "recipes", force: :cascade do |t| + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + end + +end diff --git a/db/seeds.rb b/db/seeds.rb new file mode 100644 index 000000000..1beea2acc --- /dev/null +++ b/db/seeds.rb @@ -0,0 +1,7 @@ +# This file should contain all the record creation needed to seed the database with its default values. +# The data can then be loaded with the rails db:seed command (or created alongside the database with db:setup). +# +# Examples: +# +# movies = Movie.create([{ name: 'Star Wars' }, { name: 'Lord of the Rings' }]) +# Character.create(name: 'Luke', movie: movies.first) diff --git a/lib/.DS_Store b/lib/.DS_Store new file mode 100644 index 000000000..1de71ef07 Binary files /dev/null and b/lib/.DS_Store differ diff --git a/lib/assets/.keep b/lib/assets/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/lib/muncher_api_wrapper.rb b/lib/muncher_api_wrapper.rb new file mode 100644 index 000000000..f8656495c --- /dev/null +++ b/lib/muncher_api_wrapper.rb @@ -0,0 +1,42 @@ +require 'httparty' + +class MuncherApiWrapper + BASE_URL = "https://api.edamam.com/search" + APP_ID = ENV["EDAMAM_ID"] + APP_KEY = ENV["EDAMAM_KEY"] + + def self.get_recipes(query) + recipes = [] + url = "#{BASE_URL}?app_id=#{APP_ID}&app_key=#{APP_KEY}&q=#{query}" + "&to=100" + data = HTTParty.get(url) + if data["hits"] + data["hits"].each do |hit| + name = hit["recipe"]["label"] + uri = hit["recipe"]["uri"] + image = hit["recipe"]["image"] + recipe = Recipe.new(name, uri, image) + recipes << recipe + end + end + + return recipes + end + + def self.get_recipe(recipe_id) + url = "#{BASE_URL}?app_id=#{APP_ID}&app_key=#{APP_KEY}&r=#{ERB::Util.url_encode(recipe_id)}" + data = HTTParty.get(url) + recipe = nil + + if data && data.length > 0 + name = data[0]["label"] + uri = data[0]["uri"] + image = data[0]["image"] + ingredientLines = data [0]["ingredientLines"] + healthLabels = data [0]["healthLabels"] + recipe = Recipe.new(name, uri, image, ingredientLines, healthLabels ) + end + + return recipe + end + +end diff --git a/lib/recipe.rb b/lib/recipe.rb new file mode 100644 index 000000000..cf197eb9d --- /dev/null +++ b/lib/recipe.rb @@ -0,0 +1,14 @@ +class Recipe + # paginates_per 10 + attr_reader :name, :uri, :image, :ingredientLines , :healthLabels + + def initialize(name, uri, image, ingredientLines = '', healthLabels = '' ) + @name = name + @uri = uri + @image = image + @ingredientLines = ingredientLines + @healthLabels = healthLabels + + + end +end diff --git a/lib/system/.keep b/lib/system/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/lib/tasks/.keep b/lib/tasks/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/log/.keep b/log/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/log/development.log b/log/development.log new file mode 100644 index 000000000..3f5245c68 --- /dev/null +++ b/log/development.log @@ -0,0 +1,7203 @@ +  (417.4ms) CREATE DATABASE "Api-Muncher_development" ENCODING = 'unicode' + ↳ bin/rails:9 +  (418.8ms) CREATE DATABASE "Api-Muncher_test" ENCODING = 'unicode' + ↳ bin/rails:9 +  (9.1ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY) + ↳ bin/rails:9 +  (3.5ms) CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) + ↳ bin/rails:9 +  (0.2ms) SELECT pg_try_advisory_lock(6535731585096554295) + ↳ bin/rails:9 +  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC + ↳ bin/rails:9 +Migrating to CreateRecipes (20181030222216) +  (0.2ms) BEGIN + ↳ bin/rails:9 +  (5.2ms) CREATE TABLE "recipes" ("id" bigserial primary key, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) + ↳ db/migrate/20181030222216_create_recipes.rb:3 + ActiveRecord::SchemaMigration Create (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20181030222216"]] + ↳ bin/rails:9 +  (0.4ms) COMMIT + ↳ bin/rails:9 + ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]] + ↳ bin/rails:9 +  (0.1ms) BEGIN + ↳ bin/rails:9 + ActiveRecord::InternalMetadata Create (0.4ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2018-10-30 22:22:43.109229"], ["updated_at", "2018-10-30 22:22:43.109229"]] + ↳ bin/rails:9 +  (0.3ms) COMMIT + ↳ bin/rails:9 +  (0.2ms) SELECT pg_advisory_unlock(6535731585096554295) + ↳ bin/rails:9 +  (1.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC + ↳ bin/rails:9 +Started GET "/" for 127.0.0.1 at 2018-10-30 18:00:20 -0700 +  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC + ↳ /Users/kjfitzpatrick/.rvm/gems/ruby-2.5.1/gems/activerecord-5.2.1/lib/active_record/log_subscriber.rb:98 +Processing by RecipesController#index as HTML + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 3180ms (Views: 3174.1ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 127.0.0.1 at 2018-10-30 18:03:53 -0700 +Processing by RecipesController#index as HTML + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.7ms) +Completed 200 OK in 44ms (Views: 41.5ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=chicken&commit=Search" for 127.0.0.1 at 2018-10-30 18:04:58 -0700 + +ActionController::RoutingError (No route matches [GET] "/search"): + +actionpack (5.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:65:in `call' +web-console (3.7.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.7.0) lib/web_console/middleware.rb:30:in `block in call' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `catch' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call' +railties (5.2.1) lib/rails/rack/logger.rb:38:in `call_app' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `block in call' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `block in tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:28:in `tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `tagged' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/remote_ip.rb:81:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/request_id.rb:27:in `call' +rack (2.0.5) lib/rack/method_override.rb:22:in `call' +rack (2.0.5) lib/rack/runtime.rb:22:in `call' +activesupport (5.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/executor.rb:14:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/static.rb:127:in `call' +rack (2.0.5) lib/rack/sendfile.rb:111:in `call' +railties (5.2.1) lib/rails/engine.rb:524:in `call' +puma (3.12.0) lib/puma/configuration.rb:225:in `call' +puma (3.12.0) lib/puma/server.rb:658:in `handle_request' +puma (3.12.0) lib/puma/server.rb:472:in `process_client' +puma (3.12.0) lib/puma/server.rb:332:in `block in run' +puma (3.12.0) lib/puma/thread_pool.rb:133:in `block in spawn_thread' +Started GET "/search?utf8=%E2%9C%93&q=chicken&commit=Search" for 127.0.0.1 at 2018-10-30 18:06:29 -0700 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"chicken", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.5ms) +Completed 200 OK in 41ms (Views: 38.9ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=chicken&commit=Search" for 127.0.0.1 at 2018-10-30 18:11:26 -0700 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"chicken", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.6ms) +Completed 200 OK in 42ms (Views: 40.0ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 127.0.0.1 at 2018-10-30 18:11:59 -0700 +Processing by RecipesController#index as HTML + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.6ms) +Completed 200 OK in 48ms (Views: 45.5ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 127.0.0.1 at 2018-10-30 18:14:01 -0700 +Processing by RecipesController#index as HTML + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.6ms) +Completed 200 OK in 43ms (Views: 40.6ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=wings&commit=Search" for 127.0.0.1 at 2018-10-30 18:14:08 -0700 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"wings", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.6ms) +Completed 200 OK in 45ms (Views: 42.3ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=wings&commit=Search" for 127.0.0.1 at 2018-10-30 18:27:37 -0700 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"wings", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.5ms) +Completed 200 OK in 40ms (Views: 37.6ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=wings&commit=Search" for 127.0.0.1 at 2018-10-30 18:29:13 -0700 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"wings", "commit"=>"Search"} +Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.0ms) + + + +LoadError - cannot load such file -- httparty: + lib/muncher_api_wrapper.rb:1:in `
' + app/controllers/recipes_controller.rb:5:in `index' + +Started POST "/__better_errors/d73b02ec190df24f/variables" for 127.0.0.1 at 2018-10-30 18:29:13 -0700 +Started GET "/search?utf8=%E2%9C%93&q=wings&commit=Search" for 127.0.0.1 at 2018-10-30 18:31:35 -0700 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"wings", "commit"=>"Search"} +Completed 500 Internal Server Error in 11ms (ActiveRecord: 0.0ms) + + + +LoadError - cannot load such file -- httparty: + lib/muncher_api_wrapper.rb:1:in `
' + app/controllers/recipes_controller.rb:5:in `index' + +Started POST "/__better_errors/3e441ed6f86573c1/variables" for 127.0.0.1 at 2018-10-30 18:31:35 -0700 +Started GET "/search?utf8=%E2%9C%93&q=wings&commit=Search" for 127.0.0.1 at 2018-10-30 18:31:39 -0700 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"wings", "commit"=>"Search"} +Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms) + + + +LoadError - cannot load such file -- httparty: + lib/muncher_api_wrapper.rb:1:in `
' + app/controllers/recipes_controller.rb:5:in `index' + +Started POST "/__better_errors/8105e8d4f2c741fe/variables" for 127.0.0.1 at 2018-10-30 18:31:39 -0700 +Started GET "/search?utf8=%E2%9C%93&q=wings&commit=Search" for 127.0.0.1 at 2018-10-30 18:33:08 -0700 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"wings", "commit"=>"Search"} +Completed 500 Internal Server Error in 11ms (ActiveRecord: 0.0ms) + + + +LoadError - cannot load such file -- httparty: + lib/muncher_api_wrapper.rb:1:in `
' + app/controllers/recipes_controller.rb:5:in `index' + +Started POST "/__better_errors/02a05d557a4014c7/variables" for 127.0.0.1 at 2018-10-30 18:33:09 -0700 +Started GET "/search?utf8=%E2%9C%93&q=wings&commit=Search" for 127.0.0.1 at 2018-10-30 18:33:29 -0700 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"wings", "commit"=>"Search"} +Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms) + + + +LoadError - cannot load such file -- httparty: + lib/muncher_api_wrapper.rb:1:in `
' + app/controllers/recipes_controller.rb:5:in `index' + +Started POST "/__better_errors/bb96f996e90655fc/variables" for 127.0.0.1 at 2018-10-30 18:33:29 -0700 +Started GET "/search?utf8=%E2%9C%93&q=wings&commit=Search" for 127.0.0.1 at 2018-10-30 18:33:30 -0700 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"wings", "commit"=>"Search"} +Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms) + + + +LoadError - cannot load such file -- httparty: + lib/muncher_api_wrapper.rb:1:in `
' + app/controllers/recipes_controller.rb:5:in `index' + +Started POST "/__better_errors/27206733bee93a05/variables" for 127.0.0.1 at 2018-10-30 18:33:30 -0700 +Started GET "/search?utf8=%E2%9C%93&q=wings&commit=Search" for 127.0.0.1 at 2018-10-30 18:33:30 -0700 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"wings", "commit"=>"Search"} +Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.0ms) + + + +LoadError - cannot load such file -- httparty: + lib/muncher_api_wrapper.rb:1:in `
' + app/controllers/recipes_controller.rb:5:in `index' + +Started POST "/__better_errors/5c54eee9267e7fa5/variables" for 127.0.0.1 at 2018-10-30 18:33:31 -0700 +Started GET "/search?utf8=%E2%9C%93&q=wings&commit=Search" for 127.0.0.1 at 2018-10-30 18:33:31 -0700 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"wings", "commit"=>"Search"} +Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.0ms) + + + +LoadError - cannot load such file -- httparty: + lib/muncher_api_wrapper.rb:1:in `
' + app/controllers/recipes_controller.rb:5:in `index' + +Started POST "/__better_errors/d1adf2a0d50caac4/variables" for 127.0.0.1 at 2018-10-30 18:33:31 -0700 +Started GET "/search?utf8=%E2%9C%93&q=wings&commit=Search" for 127.0.0.1 at 2018-10-30 18:33:31 -0700 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"wings", "commit"=>"Search"} +Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.0ms) + + + +LoadError - cannot load such file -- httparty: + lib/muncher_api_wrapper.rb:1:in `
' + app/controllers/recipes_controller.rb:5:in `index' + +Started POST "/__better_errors/6d4afd92cab17432/variables" for 127.0.0.1 at 2018-10-30 18:33:31 -0700 +Started GET "/search?utf8=%E2%9C%93&q=wings&commit=Search" for 127.0.0.1 at 2018-10-30 18:33:31 -0700 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"wings", "commit"=>"Search"} +Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.0ms) + + + +LoadError - cannot load such file -- httparty: + lib/muncher_api_wrapper.rb:1:in `
' + app/controllers/recipes_controller.rb:5:in `index' + +Started POST "/__better_errors/058a301a5ed47c2a/variables" for 127.0.0.1 at 2018-10-30 18:33:31 -0700 +Started GET "/search?utf8=%E2%9C%93&q=wings&commit=Search" for 127.0.0.1 at 2018-10-30 18:33:32 -0700 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"wings", "commit"=>"Search"} +Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.0ms) + + + +LoadError - cannot load such file -- httparty: + lib/muncher_api_wrapper.rb:1:in `
' + app/controllers/recipes_controller.rb:5:in `index' + +Started POST "/__better_errors/8cc2e892ff332dd7/variables" for 127.0.0.1 at 2018-10-30 18:33:32 -0700 +Started GET "/search?utf8=%E2%9C%93&q=wings&commit=Search" for 127.0.0.1 at 2018-10-30 18:33:32 -0700 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"wings", "commit"=>"Search"} +Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.0ms) + + + +LoadError - cannot load such file -- httparty: + lib/muncher_api_wrapper.rb:1:in `
' + app/controllers/recipes_controller.rb:5:in `index' + +Started POST "/__better_errors/5cf1834e3d969e71/variables" for 127.0.0.1 at 2018-10-30 18:33:32 -0700 +Started GET "/search?utf8=%E2%9C%93&q=wings&commit=Search" for 127.0.0.1 at 2018-10-30 18:35:10 -0700 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"wings", "commit"=>"Search"} +Completed 500 Internal Server Error in 9ms (ActiveRecord: 0.0ms) + + + +LoadError - cannot load such file -- httparty: + lib/muncher_api_wrapper.rb:1:in `
' + app/controllers/recipes_controller.rb:5:in `index' + +Started POST "/__better_errors/66efd75da64342f8/variables" for 127.0.0.1 at 2018-10-30 18:35:10 -0700 +Started GET "/search?utf8=%E2%9C%93&q=wings&commit=Search" for 127.0.0.1 at 2018-10-30 18:35:11 -0700 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"wings", "commit"=>"Search"} +Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms) + + + +LoadError - cannot load such file -- httparty: + lib/muncher_api_wrapper.rb:1:in `
' + app/controllers/recipes_controller.rb:5:in `index' + +Started POST "/__better_errors/994818bdae316a13/variables" for 127.0.0.1 at 2018-10-30 18:35:11 -0700 +Started GET "/search?utf8=%E2%9C%93&q=wings&commit=Search" for 127.0.0.1 at 2018-10-30 18:35:12 -0700 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"wings", "commit"=>"Search"} +Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.0ms) + + + +LoadError - cannot load such file -- httparty: + lib/muncher_api_wrapper.rb:1:in `
' + app/controllers/recipes_controller.rb:5:in `index' + +Started POST "/__better_errors/e18652b890fae35a/variables" for 127.0.0.1 at 2018-10-30 18:35:12 -0700 +Started GET "/search?utf8=%E2%9C%93&q=wings&commit=Search" for 127.0.0.1 at 2018-10-30 18:35:12 -0700 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"wings", "commit"=>"Search"} +Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms) + + + +LoadError - cannot load such file -- httparty: + lib/muncher_api_wrapper.rb:1:in `
' + app/controllers/recipes_controller.rb:5:in `index' + +Started POST "/__better_errors/43904c30c97a1d3d/variables" for 127.0.0.1 at 2018-10-30 18:35:12 -0700 +Started GET "/search?utf8=%E2%9C%93&q=wings&commit=Search" for 127.0.0.1 at 2018-10-30 18:35:12 -0700 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"wings", "commit"=>"Search"} +Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms) + + + +LoadError - cannot load such file -- httparty: + lib/muncher_api_wrapper.rb:1:in `
' + app/controllers/recipes_controller.rb:5:in `index' + +Started POST "/__better_errors/80a12cf4d299c5f2/variables" for 127.0.0.1 at 2018-10-30 18:35:12 -0700 +Started GET "/search?utf8=%E2%9C%93&q=wings&commit=Search" for 127.0.0.1 at 2018-10-30 18:35:12 -0700 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"wings", "commit"=>"Search"} +Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms) + + + +LoadError - cannot load such file -- httparty: + lib/muncher_api_wrapper.rb:1:in `
' + app/controllers/recipes_controller.rb:5:in `index' + +Started POST "/__better_errors/808746f9a14ad619/variables" for 127.0.0.1 at 2018-10-30 18:35:12 -0700 +Started GET "/search?utf8=%E2%9C%93&q=wings&commit=Search" for 127.0.0.1 at 2018-10-30 18:35:13 -0700 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"wings", "commit"=>"Search"} +Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms) + + + +LoadError - cannot load such file -- httparty: + lib/muncher_api_wrapper.rb:1:in `
' + app/controllers/recipes_controller.rb:5:in `index' + +Started POST "/__better_errors/4de806b64e6d7a47/variables" for 127.0.0.1 at 2018-10-30 18:35:13 -0700 +Started GET "/search?utf8=%E2%9C%93&q=wings&commit=Search" for 127.0.0.1 at 2018-10-30 18:35:45 -0700 +  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC + ↳ /Users/kjfitzpatrick/.rvm/gems/ruby-2.5.1/gems/activerecord-5.2.1/lib/active_record/log_subscriber.rb:98 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"wings", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 243ms (Views: 235.5ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=wings&commit=Search" for 127.0.0.1 at 2018-10-30 18:38:30 -0700 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"wings", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.6ms) +Completed 200 OK in 41ms (Views: 38.9ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=wings&commit=Search" for 127.0.0.1 at 2018-10-30 18:44:45 -0700 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"wings", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 60ms (Views: 56.9ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=wings&commit=Search" for 127.0.0.1 at 2018-10-30 18:47:31 -0700 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"wings", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 46ms (Views: 43.9ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=wings&commit=Search" for 127.0.0.1 at 2018-10-30 18:52:47 -0700 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"wings", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 58ms (Views: 53.7ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=carrot&commit=Search" for 127.0.0.1 at 2018-10-30 18:52:53 -0700 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"carrot", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 52ms (Views: 50.1ms | ActiveRecord: 0.0ms) + + +Started GET "/recipe?r=carrot" for 127.0.0.1 at 2018-10-30 18:52:55 -0700 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"carrot"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (0.3ms) +Completed 200 OK in 51ms (Views: 48.7ms | ActiveRecord: 0.0ms) + + +Started GET "/recipe?r=carrot" for 127.0.0.1 at 2018-10-30 19:20:19 -0700 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"carrot"} +Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.0ms) + + + +SyntaxError - syntax error, unexpected tIDENTIFIER, expecting keyword_end + APP_ID = 540129f8 + ^~ +/Users/kjfitzpatrick/ada/week13/api-muncher/Api-Muncher/lib/muncher_api_wrapper.rb:6: syntax error, unexpected tIDENTIFIER, expecting keyword_end +...ed28c083c24a129f2e18bd58e3cf2a9 +...^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~: + lib/muncher_api_wrapper.rb:5:in `' + app/controllers/recipes_controller.rb:10:in `show' + +Started POST "/__better_errors/d0c2304fd3ecc970/variables" for 127.0.0.1 at 2018-10-30 19:20:20 -0700 +Started GET "/recipe?r=carrot" for 127.0.0.1 at 2018-10-30 19:21:29 -0700 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"carrot"} +Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.0ms) + + + +ArgumentError - wrong number of arguments (given 1, expected 2): + lib/recipe.rb:4:in `initialize' + lib/muncher_api_wrapper.rb:24:in `new' + lib/muncher_api_wrapper.rb:24:in `get_recipe' + app/controllers/recipes_controller.rb:10:in `show' + +Started POST "/__better_errors/257de736547e5bac/variables" for 127.0.0.1 at 2018-10-30 19:21:29 -0700 +Started GET "/recipe?r=carrot" for 127.0.0.1 at 2018-10-30 19:21:57 -0700 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"carrot"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (0.3ms) +Completed 200 OK in 42ms (Views: 38.6ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 127.0.0.1 at 2018-10-30 19:22:05 -0700 +Processing by RecipesController#index as HTML + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.6ms) +Completed 200 OK in 621ms (Views: 38.3ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=chicken&commit=Search" for 127.0.0.1 at 2018-10-30 19:22:10 -0700 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"chicken", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (1.1ms) +Completed 200 OK in 1939ms (Views: 39.0ms | ActiveRecord: 0.0ms) + + +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_7bf4a371c6884d809682a72808da7dc2" for 127.0.0.1 at 2018-10-30 19:22:19 -0700 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_7bf4a371c6884d809682a72808da7dc2"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (0.3ms) +Completed 200 OK in 47ms (Views: 45.2ms | ActiveRecord: 0.0ms) + + +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_7bf4a371c6884d809682a72808da7dc2" for 127.0.0.1 at 2018-10-30 19:23:00 -0700 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_7bf4a371c6884d809682a72808da7dc2"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (0.4ms) +Completed 200 OK in 47ms (Views: 44.1ms | ActiveRecord: 0.0ms) + + +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_7bf4a371c6884d809682a72808da7dc2" for 127.0.0.1 at 2018-10-30 19:30:52 -0700 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_7bf4a371c6884d809682a72808da7dc2"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (4.4ms) +Completed 500 Internal Server Error in 804ms (ActiveRecord: 0.0ms) + + + +NoMethodError - undefined method `name' for nil:NilClass: + app/views/recipes/show.html.erb:1:in `_app_views_recipes_show_html_erb__2104847348514461361_70100965857820' + +Started POST "/__better_errors/be75be94f85a044f/variables" for 127.0.0.1 at 2018-10-30 19:30:53 -0700 +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_7bf4a371c6884d809682a72808da7dc2" for 127.0.0.1 at 2018-10-30 19:33:03 -0700 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_7bf4a371c6884d809682a72808da7dc2"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (3.3ms) +Completed 500 Internal Server Error in 492ms (ActiveRecord: 0.0ms) + + + +NoMethodError - undefined method `name' for nil:NilClass: + app/views/recipes/show.html.erb:1:in `_app_views_recipes_show_html_erb__2104847348514461361_70100972332560' + +Started POST "/__better_errors/3eacd720380d9435/variables" for 127.0.0.1 at 2018-10-30 19:33:03 -0700 +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_7bf4a371c6884d809682a72808da7dc2" for 127.0.0.1 at 2018-10-30 19:33:06 -0700 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_7bf4a371c6884d809682a72808da7dc2"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (4.0ms) +Completed 500 Internal Server Error in 437ms (ActiveRecord: 0.0ms) + + + +NoMethodError - undefined method `name' for nil:NilClass: + app/views/recipes/show.html.erb:1:in `_app_views_recipes_show_html_erb__2104847348514461361_70100944454080' + +Started POST "/__better_errors/d41f7c4761abad2d/variables" for 127.0.0.1 at 2018-10-30 19:33:06 -0700 +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_7bf4a371c6884d809682a72808da7dc2" for 127.0.0.1 at 2018-10-30 19:33:25 -0700 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_7bf4a371c6884d809682a72808da7dc2"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (3.1ms) +Completed 500 Internal Server Error in 690ms (ActiveRecord: 0.0ms) + + + +NoMethodError - undefined method `name' for nil:NilClass: + app/views/recipes/show.html.erb:1:in `_app_views_recipes_show_html_erb__2104847348514461361_70100974533680' + +Started POST "/__better_errors/95485bd39a77f7e0/variables" for 127.0.0.1 at 2018-10-30 19:33:26 -0700 +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_7bf4a371c6884d809682a72808da7dc2" for 127.0.0.1 at 2018-10-30 19:34:23 -0700 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_7bf4a371c6884d809682a72808da7dc2"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (3.2ms) +Completed 500 Internal Server Error in 421ms (ActiveRecord: 0.0ms) + + + +NoMethodError - undefined method `name' for nil:NilClass: + app/views/recipes/show.html.erb:1:in `_app_views_recipes_show_html_erb__2104847348514461361_70101002635400' + +Started POST "/__better_errors/fffaceb703f7caa8/variables" for 127.0.0.1 at 2018-10-30 19:34:23 -0700 +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_7bf4a371c6884d809682a72808da7dc2" for 127.0.0.1 at 2018-10-30 19:35:44 -0700 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_7bf4a371c6884d809682a72808da7dc2"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (4.7ms) +Completed 500 Internal Server Error in 530ms (ActiveRecord: 0.0ms) + + + +NoMethodError - undefined method `name' for nil:NilClass: + app/views/recipes/show.html.erb:1:in `_app_views_recipes_show_html_erb__2104847348514461361_70100951235640' + +Started POST "/__better_errors/df613823aaa65d05/variables" for 127.0.0.1 at 2018-10-30 19:35:45 -0700 +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_7bf4a371c6884d809682a72808da7dc2" for 127.0.0.1 at 2018-10-30 19:36:04 -0700 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_7bf4a371c6884d809682a72808da7dc2"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (3.1ms) +Completed 500 Internal Server Error in 491ms (ActiveRecord: 0.0ms) + + + +NoMethodError - undefined method `name' for nil:NilClass: + app/views/recipes/show.html.erb:1:in `_app_views_recipes_show_html_erb__2104847348514461361_70101003086320' + +Started POST "/__better_errors/da63c74ef7f1cba7/variables" for 127.0.0.1 at 2018-10-30 19:36:05 -0700 +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_7bf4a371c6884d809682a72808da7dc2" for 127.0.0.1 at 2018-10-30 19:36:46 -0700 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_7bf4a371c6884d809682a72808da7dc2"} +Completed 500 Internal Server Error in 441ms (ActiveRecord: 0.0ms) + + + +TypeError - no implicit conversion of String into Integer: + lib/muncher_api_wrapper.rb:32:in `get_recipe' + app/controllers/recipes_controller.rb:10:in `show' + +Started POST "/__better_errors/dc11b3e41af5f693/variables" for 127.0.0.1 at 2018-10-30 19:36:47 -0700 +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_7bf4a371c6884d809682a72808da7dc2" for 127.0.0.1 at 2018-10-30 19:38:16 -0700 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_7bf4a371c6884d809682a72808da7dc2"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (0.3ms) +Completed 200 OK in 522ms (Views: 41.8ms | ActiveRecord: 0.0ms) + + +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_7bf4a371c6884d809682a72808da7dc2" for 127.0.0.1 at 2018-10-30 19:38:35 -0700 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_7bf4a371c6884d809682a72808da7dc2"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (0.3ms) +Completed 200 OK in 557ms (Views: 56.1ms | ActiveRecord: 0.0ms) + + +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_7bf4a371c6884d809682a72808da7dc2" for 127.0.0.1 at 2018-10-30 19:39:05 -0700 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_7bf4a371c6884d809682a72808da7dc2"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (0.3ms) +Completed 200 OK in 658ms (Views: 40.6ms | ActiveRecord: 0.0ms) + + +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_7bf4a371c6884d809682a72808da7dc2" for 127.0.0.1 at 2018-10-30 19:39:21 -0700 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_7bf4a371c6884d809682a72808da7dc2"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (0.3ms) +Completed 200 OK in 561ms (Views: 41.3ms | ActiveRecord: 0.0ms) + + +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_7bf4a371c6884d809682a72808da7dc2" for 127.0.0.1 at 2018-10-30 19:39:49 -0700 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_7bf4a371c6884d809682a72808da7dc2"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (0.3ms) +Completed 200 OK in 532ms (Views: 38.1ms | ActiveRecord: 0.0ms) + + +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_7bf4a371c6884d809682a72808da7dc2" for 127.0.0.1 at 2018-10-30 19:40:12 -0700 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_7bf4a371c6884d809682a72808da7dc2"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (7.6ms) +Completed 500 Internal Server Error in 561ms (ActiveRecord: 0.0ms) + + + +NoMethodError - undefined method `name' for nil:NilClass: + app/views/recipes/show.html.erb:1:in `_app_views_recipes_show_html_erb__2104847348514461361_70100952875020' + +Started POST "/__better_errors/03e29f3da5382179/variables" for 127.0.0.1 at 2018-10-30 19:40:12 -0700 +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_7bf4a371c6884d809682a72808da7dc2" for 127.0.0.1 at 2018-10-30 19:40:24 -0700 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_7bf4a371c6884d809682a72808da7dc2"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (0.3ms) +Completed 200 OK in 517ms (Views: 32.5ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 127.0.0.1 at 2018-10-30 19:40:28 -0700 +Processing by RecipesController#index as HTML + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.6ms) +Completed 200 OK in 514ms (Views: 44.2ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=beef&commit=Search" for 127.0.0.1 at 2018-10-30 19:40:30 -0700 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"beef", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (1.2ms) +Completed 200 OK in 1254ms (Views: 41.8ms | ActiveRecord: 0.0ms) + + +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_89f0821227fd12abbbee648358661834" for 127.0.0.1 at 2018-10-30 19:40:37 -0700 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_89f0821227fd12abbbee648358661834"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (0.3ms) +Completed 200 OK in 519ms (Views: 39.1ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=chicken&commit=Search" for 127.0.0.1 at 2018-10-30 19:56:27 -0700 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"chicken", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (1.3ms) +Completed 200 OK in 1538ms (Views: 44.5ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=chicken&commit=Search" for 127.0.0.1 at 2018-10-30 19:56:29 -0700 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"chicken", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (1.2ms) +Completed 200 OK in 2035ms (Views: 40.6ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=eggplant&commit=Search" for 127.0.0.1 at 2018-10-30 19:56:38 -0700 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"eggplant", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (1.2ms) +Completed 200 OK in 1060ms (Views: 42.0ms | ActiveRecord: 0.0ms) + + +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_4df6d78e862464ebbd8e9fbffd4d6447" for 127.0.0.1 at 2018-10-30 19:56:45 -0700 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_4df6d78e862464ebbd8e9fbffd4d6447"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (0.3ms) +Completed 200 OK in 482ms (Views: 38.1ms | ActiveRecord: 0.0ms) + + +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_76feb0eeb0e63a8ca18e84a69ee34b1e" for 127.0.0.1 at 2018-10-30 23:07:22 -0700 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_76feb0eeb0e63a8ca18e84a69ee34b1e"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (0.3ms) +Completed 200 OK in 1223ms (Views: 37.7ms | ActiveRecord: 0.0ms) + + +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_c9f59e3ab6ad91097130d2e56c79f138" for 127.0.0.1 at 2018-10-30 23:07:27 -0700 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_c9f59e3ab6ad91097130d2e56c79f138"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (0.3ms) +Completed 200 OK in 486ms (Views: 39.1ms | ActiveRecord: 0.0ms) + + +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_4c6ee298b4c4b0f6503f440a0d4d2ed6" for 127.0.0.1 at 2018-10-31 09:19:06 -0700 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_4c6ee298b4c4b0f6503f440a0d4d2ed6"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (5.6ms) +Completed 200 OK in 1304ms (Views: 116.5ms | ActiveRecord: 0.0ms) + + +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_c9f59e3ab6ad91097130d2e56c79f138" for 127.0.0.1 at 2018-10-31 09:19:12 -0700 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_c9f59e3ab6ad91097130d2e56c79f138"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (0.3ms) +Completed 200 OK in 680ms (Views: 54.2ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=eggplant&commit=Search" for 127.0.0.1 at 2018-10-31 11:43:19 -0700 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"eggplant", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 8988ms (Views: 73.6ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=beef&commit=Search" for 127.0.0.1 at 2018-10-31 11:43:37 -0700 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"beef", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.6ms) +Completed 200 OK in 10998ms (Views: 39.3ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=beef&commit=Search" for 127.0.0.1 at 2018-10-31 11:43:53 -0700 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"beef", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (1.2ms) +Completed 200 OK in 2873ms (Views: 50.2ms | ActiveRecord: 0.0ms) + + +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_3921adf30bb0c9736b9ac30f447f8a63" for 127.0.0.1 at 2018-10-31 11:44:03 -0700 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_3921adf30bb0c9736b9ac30f447f8a63"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (0.3ms) +Completed 200 OK in 644ms (Views: 37.9ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=beef&commit=Search" for 127.0.0.1 at 2018-10-31 11:45:42 -0700 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"beef", "commit"=>"Search"} +Completed 500 Internal Server Error in 1845ms (ActiveRecord: 0.0ms) + + + +SyntaxError - syntax error, unexpected '=', expecting ')' +... initialize(name, uri, image: = '' ) +... ^ +/Users/kjfitzpatrick/ada/week13/api-muncher/Api-Muncher/lib/recipe.rb:11: syntax error, unexpected keyword_end, expecting end-of-input: + lib/recipe.rb:4:in `' + lib/muncher_api_wrapper.rb:19:in `block in get_recipes' + lib/muncher_api_wrapper.rb:15:in `get_recipes' + app/controllers/recipes_controller.rb:5:in `index' + +Started POST "/__better_errors/e0e6452388c84eb4/variables" for 127.0.0.1 at 2018-10-31 11:45:43 -0700 +Started GET "/search?utf8=%E2%9C%93&q=beef&commit=Search" for 127.0.0.1 at 2018-10-31 11:46:06 -0700 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"beef", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (1.3ms) +Completed 200 OK in 1254ms (Views: 39.9ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=beef&commit=Search" for 127.0.0.1 at 2018-10-31 11:49:47 -0700 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"beef", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (4.4ms) +Completed 500 Internal Server Error in 1421ms (ActiveRecord: 0.0ms) + + + +Sprockets::Rails::Helper::AssetNotFound - The asset "recipe.image" is not present in the asset pipeline.: + app/views/recipes/index.html.erb:11:in `block in _app_views_recipes_index_html_erb___841611820802434049_70101002306140' + app/views/recipes/index.html.erb:9:in `_app_views_recipes_index_html_erb___841611820802434049_70101002306140' + +Started POST "/__better_errors/877f38287f49e3ca/variables" for 127.0.0.1 at 2018-10-31 11:49:48 -0700 +Started GET "/search?utf8=%E2%9C%93&q=beef&commit=Search" for 127.0.0.1 at 2018-10-31 11:50:32 -0700 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"beef", "commit"=>"Search"} +Completed 500 Internal Server Error in 1220ms (ActiveRecord: 0.0ms) + + + +ArgumentError - wrong number of arguments (given 2, expected 3): + lib/recipe.rb:4:in `initialize' + lib/muncher_api_wrapper.rb:19:in `new' + lib/muncher_api_wrapper.rb:19:in `block in get_recipes' + lib/muncher_api_wrapper.rb:15:in `each' + lib/muncher_api_wrapper.rb:15:in `get_recipes' + app/controllers/recipes_controller.rb:5:in `index' + +Started POST "/__better_errors/4cec6eaefba1a326/variables" for 127.0.0.1 at 2018-10-31 11:50:33 -0700 +Started POST "/__better_errors/4cec6eaefba1a326/variables" for 127.0.0.1 at 2018-10-31 11:51:02 -0700 +Started GET "/search?utf8=%E2%9C%93&q=beef&commit=Search" for 127.0.0.1 at 2018-10-31 11:51:21 -0700 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"beef", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (4.6ms) +Completed 500 Internal Server Error in 2412ms (ActiveRecord: 0.0ms) + + + +Sprockets::Rails::Helper::AssetNotFound - The asset "recipe.image" is not present in the asset pipeline.: + app/views/recipes/index.html.erb:11:in `block in _app_views_recipes_index_html_erb___841611820802434049_70100982368060' + app/views/recipes/index.html.erb:9:in `_app_views_recipes_index_html_erb___841611820802434049_70100982368060' + +Started POST "/__better_errors/f9299f549896cd8a/variables" for 127.0.0.1 at 2018-10-31 11:51:24 -0700 +Started POST "/__better_errors/f9299f549896cd8a/variables" for 127.0.0.1 at 2018-10-31 11:51:29 -0700 +Started GET "/search?utf8=%E2%9C%93&q=beef&commit=Search" for 127.0.0.1 at 2018-10-31 11:53:27 -0700 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"beef", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (4.1ms) +Completed 500 Internal Server Error in 1650ms (ActiveRecord: 0.0ms) + + + +Sprockets::Rails::Helper::AssetNotFound - The asset "recipe.image" is not present in the asset pipeline.: + app/views/recipes/index.html.erb:11:in `block in _app_views_recipes_index_html_erb___841611820802434049_70100949244920' + app/views/recipes/index.html.erb:9:in `_app_views_recipes_index_html_erb___841611820802434049_70100949244920' + +Started POST "/__better_errors/b8b4309c3a8aacaa/variables" for 127.0.0.1 at 2018-10-31 11:53:29 -0700 +Started GET "/search?utf8=%E2%9C%93&q=beef&commit=Search" for 127.0.0.1 at 2018-10-31 12:10:15 -0700 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"beef", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.8ms) +Completed 500 Internal Server Error in 1724ms (ActiveRecord: 0.0ms) + + + +SyntaxError - syntax error, unexpected keyword_end, expecting ')' +'.freeze; end + ^~~ +/Users/kjfitzpatrick/ada/week13/api-muncher/Api-Muncher/app/views/recipes/index.html.erb:15: syntax error, unexpected keyword_ensure, expecting ')' + ensure + ^~~~~~ +/Users/kjfitzpatrick/ada/week13/api-muncher/Api-Muncher/app/views/recipes/index.html.erb:17: syntax error, unexpected keyword_end, expecting ')' + end + ^~~: + app/views/recipes/index.html.erb:13:in `' + +Started POST "/__better_errors/6b09e57bc1cafa27/variables" for 127.0.0.1 at 2018-10-31 12:10:16 -0700 +Started GET "/search?utf8=%E2%9C%93&q=beef&commit=Search" for 127.0.0.1 at 2018-10-31 12:11:53 -0700 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"beef", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (2.2ms) +Completed 200 OK in 17531ms (Views: 36.7ms | ActiveRecord: 0.0ms) + + +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_3921adf30bb0c9736b9ac30f447f8a63" for 127.0.0.1 at 2018-10-31 12:36:53 -0700 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_3921adf30bb0c9736b9ac30f447f8a63"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (0.3ms) +Completed 200 OK in 1799ms (Views: 39.8ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=eggplant&commit=Search" for 127.0.0.1 at 2018-10-31 12:37:03 -0700 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"eggplant", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (2.2ms) +Completed 200 OK in 1309ms (Views: 48.1ms | ActiveRecord: 0.0ms) + + +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_76feb0eeb0e63a8ca18e84a69ee34b1e" for 127.0.0.1 at 2018-10-31 12:42:14 -0700 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_76feb0eeb0e63a8ca18e84a69ee34b1e"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (0.3ms) +Completed 200 OK in 1726ms (Views: 40.1ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=eggplant&commit=Search" for 127.0.0.1 at 2018-10-31 12:44:26 -0700 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"eggplant", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (2.0ms) +Completed 200 OK in 1347ms (Views: 38.3ms | ActiveRecord: 0.0ms) + + +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_76feb0eeb0e63a8ca18e84a69ee34b1e" for 127.0.0.1 at 2018-10-31 12:44:29 -0700 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_76feb0eeb0e63a8ca18e84a69ee34b1e"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (4.9ms) +Completed 500 Internal Server Error in 508ms (ActiveRecord: 0.0ms) + + + +NoMethodError - undefined method `ingredientLines' for #: + app/views/recipes/show.html.erb:3:in `_app_views_recipes_show_html_erb__2104847348514461361_70100945018140' + +Started POST "/__better_errors/87b7a389bcb2e45c/variables" for 127.0.0.1 at 2018-10-31 12:44:29 -0700 +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_76feb0eeb0e63a8ca18e84a69ee34b1e" for 127.0.0.1 at 2018-10-31 12:44:45 -0700 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_76feb0eeb0e63a8ca18e84a69ee34b1e"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (324.7ms) +Completed 500 Internal Server Error in 840ms (ActiveRecord: 0.0ms) + + + +NameError - undefined local variable or method `ingredientLines' for #<#:0x00007f83503d1668>: + app/views/recipes/show.html.erb:3:in `_app_views_recipes_show_html_erb__2104847348514461361_70100981814620' + +Started POST "/__better_errors/25b91a425cd508c7/variables" for 127.0.0.1 at 2018-10-31 12:44:46 -0700 +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_76feb0eeb0e63a8ca18e84a69ee34b1e" for 127.0.0.1 at 2018-10-31 12:45:28 -0700 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_76feb0eeb0e63a8ca18e84a69ee34b1e"} +Completed 500 Internal Server Error in 441ms (ActiveRecord: 0.0ms) + + + +ArgumentError - wrong number of arguments (given 4, expected 3): + lib/recipe.rb:4:in `initialize' + lib/muncher_api_wrapper.rb:37:in `new' + lib/muncher_api_wrapper.rb:37:in `get_recipe' + app/controllers/recipes_controller.rb:10:in `show' + +Started POST "/__better_errors/cb6f8d54c13bace0/variables" for 127.0.0.1 at 2018-10-31 12:45:29 -0700 +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_76feb0eeb0e63a8ca18e84a69ee34b1e" for 127.0.0.1 at 2018-10-31 12:46:09 -0700 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_76feb0eeb0e63a8ca18e84a69ee34b1e"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (270.6ms) +Completed 500 Internal Server Error in 1174ms (ActiveRecord: 0.0ms) + + + +NameError - undefined local variable or method `ingredientLines' for #<#:0x00007f83502ea600>: + app/views/recipes/show.html.erb:3:in `_app_views_recipes_show_html_erb__2104847348514461361_70100981352440' + +Started POST "/__better_errors/840bc07948e46fb0/variables" for 127.0.0.1 at 2018-10-31 12:46:11 -0700 +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_76feb0eeb0e63a8ca18e84a69ee34b1e" for 127.0.0.1 at 2018-10-31 12:46:36 -0700 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_76feb0eeb0e63a8ca18e84a69ee34b1e"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (0.3ms) +Completed 200 OK in 527ms (Views: 32.1ms | ActiveRecord: 0.0ms) + + +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_76feb0eeb0e63a8ca18e84a69ee34b1e" for 127.0.0.1 at 2018-10-31 13:00:46 -0700 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_76feb0eeb0e63a8ca18e84a69ee34b1e"} +Completed 500 Internal Server Error in 573ms (ActiveRecord: 0.0ms) + + + +ArgumentError - wrong number of arguments (given 4, expected 5): + lib/recipe.rb:4:in `initialize' + lib/muncher_api_wrapper.rb:38:in `new' + lib/muncher_api_wrapper.rb:38:in `get_recipe' + app/controllers/recipes_controller.rb:10:in `show' + +Started POST "/__better_errors/1ab181eba1f1c421/variables" for 127.0.0.1 at 2018-10-31 13:00:47 -0700 +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_76feb0eeb0e63a8ca18e84a69ee34b1e" for 127.0.0.1 at 2018-10-31 13:01:18 -0700 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_76feb0eeb0e63a8ca18e84a69ee34b1e"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (3.5ms) +Completed 500 Internal Server Error in 459ms (ActiveRecord: 0.0ms) + + + +NoMethodError - undefined method `healthLabels' for #: + app/views/recipes/show.html.erb:7:in `_app_views_recipes_show_html_erb__2104847348514461361_70101001438640' + +Started POST "/__better_errors/690e4fce5725ba73/variables" for 127.0.0.1 at 2018-10-31 13:01:18 -0700 +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_76feb0eeb0e63a8ca18e84a69ee34b1e" for 127.0.0.1 at 2018-10-31 13:01:47 -0700 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_76feb0eeb0e63a8ca18e84a69ee34b1e"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (0.4ms) +Completed 200 OK in 928ms (Views: 34.5ms | ActiveRecord: 0.0ms) + + +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_76feb0eeb0e63a8ca18e84a69ee34b1e" for 127.0.0.1 at 2018-10-31 13:02:15 -0700 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_76feb0eeb0e63a8ca18e84a69ee34b1e"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (0.4ms) +Completed 200 OK in 541ms (Views: 32.9ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=eggplant&commit=Search" for 127.0.0.1 at 2018-10-31 22:26:21 -0700 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"eggplant", "commit"=>"Search"} +Completed 500 Internal Server Error in 1200ms (ActiveRecord: 0.0ms) + + + +ArgumentError - wrong number of arguments (given 3, expected 5): + lib/recipe.rb:4:in `initialize' + lib/muncher_api_wrapper.rb:19:in `new' + lib/muncher_api_wrapper.rb:19:in `block in get_recipes' + lib/muncher_api_wrapper.rb:15:in `each' + lib/muncher_api_wrapper.rb:15:in `get_recipes' + app/controllers/recipes_controller.rb:5:in `index' + +Started POST "/__better_errors/dc2ed2357b89ac9b/variables" for 127.0.0.1 at 2018-10-31 22:26:23 -0700 +Started GET "/search?utf8=%E2%9C%93&q=eggplant&commit=Search" for 127.0.0.1 at 2018-10-31 22:26:25 -0700 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"eggplant", "commit"=>"Search"} +Completed 500 Internal Server Error in 1856ms (ActiveRecord: 0.0ms) + + + +ArgumentError - wrong number of arguments (given 3, expected 5): + lib/recipe.rb:4:in `initialize' + lib/muncher_api_wrapper.rb:19:in `new' + lib/muncher_api_wrapper.rb:19:in `block in get_recipes' + lib/muncher_api_wrapper.rb:15:in `each' + lib/muncher_api_wrapper.rb:15:in `get_recipes' + app/controllers/recipes_controller.rb:5:in `index' + +Started POST "/__better_errors/541b78d91eec7272/variables" for 127.0.0.1 at 2018-10-31 22:26:27 -0700 +Started GET "/" for 127.0.0.1 at 2018-10-31 22:26:46 -0700 +Processing by RecipesController#index as HTML + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (1.8ms) +Completed 200 OK in 606ms (Views: 114.0ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=leeks&commit=Search" for 127.0.0.1 at 2018-10-31 22:27:22 -0700 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"leeks", "commit"=>"Search"} +Completed 500 Internal Server Error in 1132ms (ActiveRecord: 0.0ms) + + + +ArgumentError - wrong number of arguments (given 3, expected 5): + lib/recipe.rb:4:in `initialize' + lib/muncher_api_wrapper.rb:19:in `new' + lib/muncher_api_wrapper.rb:19:in `block in get_recipes' + lib/muncher_api_wrapper.rb:15:in `each' + lib/muncher_api_wrapper.rb:15:in `get_recipes' + app/controllers/recipes_controller.rb:5:in `index' + +Started POST "/__better_errors/2181d92721f501fc/variables" for 127.0.0.1 at 2018-10-31 22:27:24 -0700 +Started GET "/" for 127.0.0.1 at 2018-10-31 22:27:50 -0700 +Processing by RecipesController#index as HTML + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.7ms) +Completed 200 OK in 562ms (Views: 43.5ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=beef&commit=Search" for 127.0.0.1 at 2018-10-31 22:27:55 -0700 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"beef", "commit"=>"Search"} +Completed 500 Internal Server Error in 1364ms (ActiveRecord: 0.0ms) + + + +ArgumentError - wrong number of arguments (given 3, expected 5): + lib/recipe.rb:4:in `initialize' + lib/muncher_api_wrapper.rb:19:in `new' + lib/muncher_api_wrapper.rb:19:in `block in get_recipes' + lib/muncher_api_wrapper.rb:15:in `each' + lib/muncher_api_wrapper.rb:15:in `get_recipes' + app/controllers/recipes_controller.rb:5:in `index' + +Started POST "/__better_errors/493b7c684d8f2fba/variables" for 127.0.0.1 at 2018-10-31 22:27:56 -0700 +Started POST "/__better_errors/493b7c684d8f2fba/variables" for 127.0.0.1 at 2018-10-31 22:28:39 -0700 +Started GET "/search?utf8=%E2%9C%93&q=beef&commit=Search" for 127.0.0.1 at 2018-10-31 22:29:29 -0700 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"beef", "commit"=>"Search"} +Completed 500 Internal Server Error in 1166ms (ActiveRecord: 0.0ms) + + + +NameError - undefined local variable or method `ingredientLines' for MuncherApiWrapper:Class: + lib/muncher_api_wrapper.rb:19:in `block in get_recipes' + lib/muncher_api_wrapper.rb:15:in `get_recipes' + app/controllers/recipes_controller.rb:5:in `index' + +Started POST "/__better_errors/c4a49a46008c6496/variables" for 127.0.0.1 at 2018-10-31 22:29:30 -0700 +Started GET "/search?utf8=%E2%9C%93&q=beef&commit=Search" for 127.0.0.1 at 2018-10-31 22:29:46 -0700 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"beef", "commit"=>"Search"} +Completed 500 Internal Server Error in 1328ms (ActiveRecord: 0.0ms) + + + +NameError - undefined local variable or method `ingredientLines' for MuncherApiWrapper:Class: + lib/muncher_api_wrapper.rb:19:in `block in get_recipes' + lib/muncher_api_wrapper.rb:15:in `get_recipes' + app/controllers/recipes_controller.rb:5:in `index' + +Started POST "/__better_errors/dadff5690ce4c813/variables" for 127.0.0.1 at 2018-10-31 22:29:47 -0700 +Started GET "/search?utf8=%E2%9C%93&q=beef&commit=Search" for 127.0.0.1 at 2018-10-31 22:30:37 -0700 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"beef", "commit"=>"Search"} +Completed 500 Internal Server Error in 1420ms (ActiveRecord: 0.0ms) + + + +NameError - undefined local variable or method `ingredientLines' for MuncherApiWrapper:Class: + lib/muncher_api_wrapper.rb:19:in `block in get_recipes' + lib/muncher_api_wrapper.rb:15:in `get_recipes' + app/controllers/recipes_controller.rb:5:in `index' + +Started POST "/__better_errors/948c1c3e2e255e91/variables" for 127.0.0.1 at 2018-10-31 22:30:39 -0700 +Started POST "/__better_errors/948c1c3e2e255e91/variables" for 127.0.0.1 at 2018-10-31 22:30:42 -0700 +Started POST "/__better_errors/948c1c3e2e255e91/variables" for 127.0.0.1 at 2018-10-31 22:31:02 -0700 +Started GET "/search?utf8=%E2%9C%93&q=beef&commit=Search" for 127.0.0.1 at 2018-10-31 22:31:53 -0700 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"beef", "commit"=>"Search"} +Completed 500 Internal Server Error in 1397ms (ActiveRecord: 0.0ms) + + + +ArgumentError - wrong number of arguments (given 3, expected 5): + lib/recipe.rb:4:in `initialize' + lib/muncher_api_wrapper.rb:19:in `new' + lib/muncher_api_wrapper.rb:19:in `block in get_recipes' + lib/muncher_api_wrapper.rb:15:in `each' + lib/muncher_api_wrapper.rb:15:in `get_recipes' + app/controllers/recipes_controller.rb:5:in `index' + +Started POST "/__better_errors/e7b18798a91c87a3/variables" for 127.0.0.1 at 2018-10-31 22:31:55 -0700 +Started GET "/search?utf8=%E2%9C%93&q=beef&commit=Search" for 127.0.0.1 at 2018-10-31 22:32:33 -0700 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"beef", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (2.2ms) +Completed 200 OK in 1396ms (Views: 53.1ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=crab&commit=Search" for 127.0.0.1 at 2018-10-31 22:32:51 -0700 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"crab", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (5.3ms) +Completed 200 OK in 1302ms (Views: 85.7ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=patte&commit=Search" for 127.0.0.1 at 2018-10-31 22:32:59 -0700 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"patte", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (11.7ms) +Completed 200 OK in 656ms (Views: 48.2ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=suck&commit=Search" for 127.0.0.1 at 2018-10-31 22:33:06 -0700 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"suck", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (2.1ms) +Completed 200 OK in 936ms (Views: 37.4ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=duck&commit=Search" for 127.0.0.1 at 2018-10-31 22:33:11 -0700 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"duck", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (1.9ms) +Completed 200 OK in 1170ms (Views: 43.8ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 127.0.0.1 at 2018-11-01 09:20:58 -0700 +Processing by RecipesController#index as HTML + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (6.8ms) +Completed 200 OK in 1283ms (Views: 192.4ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=beef&commit=Search" for 127.0.0.1 at 2018-11-01 09:21:07 -0700 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"beef", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (3.4ms) +Completed 200 OK in 2410ms (Views: 59.3ms | ActiveRecord: 0.0ms) + + +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_3921adf30bb0c9736b9ac30f447f8a63" for 127.0.0.1 at 2018-11-01 09:21:28 -0700 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_3921adf30bb0c9736b9ac30f447f8a63"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (1.5ms) +Completed 200 OK in 502ms (Views: 58.6ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=beef&commit=Search" for 127.0.0.1 at 2018-11-02 13:28:00 -0700 +  (0.9ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC + ↳ /Users/kjfitzpatrick/.rvm/gems/ruby-2.5.1/gems/activerecord-5.2.1/lib/active_record/log_subscriber.rb:98 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"beef", "commit"=>"Search"} +Completed 500 Internal Server Error in 1937ms (ActiveRecord: 0.0ms) + + + +NoMethodError - undefined method `paginates_per' for Recipe:Class: + lib/recipe.rb:2:in `' + lib/recipe.rb:1:in `
' + lib/muncher_api_wrapper.rb:19:in `block in get_recipes' + lib/muncher_api_wrapper.rb:15:in `get_recipes' + app/controllers/recipes_controller.rb:6:in `index' + +Started POST "/__better_errors/98a59e48f88adce8/variables" for 127.0.0.1 at 2018-11-02 13:28:02 -0700 +Started GET "/" for 127.0.0.1 at 2018-11-02 15:33:12 -0700 +Processing by RecipesController#index as HTML +Completed 500 Internal Server Error in 583ms (ActiveRecord: 0.0ms) + + + +NoMethodError - undefined method `page' for []:Array: + app/controllers/recipes_controller.rb:6:in `index' + +Started POST "/__better_errors/91f2c2390d60514a/variables" for 127.0.0.1 at 2018-11-02 15:33:13 -0700 +Started POST "/__better_errors/91f2c2390d60514a/variables" for 127.0.0.1 at 2018-11-02 15:33:32 -0700 +Started GET "/" for 127.0.0.1 at 2018-11-02 15:43:41 -0700 +Processing by RecipesController#index as HTML +Completed 500 Internal Server Error in 580ms (ActiveRecord: 0.0ms) + + + +NoMethodError - undefined method `page' for []:Array: + app/controllers/recipes_controller.rb:6:in `index' + +Started POST "/__better_errors/4d9d9a716f4e23a4/variables" for 127.0.0.1 at 2018-11-02 15:43:42 -0700 +Started GET "/" for 127.0.0.1 at 2018-11-02 15:43:51 -0700 +Processing by RecipesController#index as HTML +Completed 500 Internal Server Error in 421ms (ActiveRecord: 0.0ms) + + + +NoMethodError - undefined method `page' for []:Array: + app/controllers/recipes_controller.rb:6:in `index' + +Started POST "/__better_errors/f3247da3bd494442/variables" for 127.0.0.1 at 2018-11-02 15:43:51 -0700 +Started GET "/" for 127.0.0.1 at 2018-11-02 15:44:13 -0700 +Processing by RecipesController#index as HTML + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 686ms (Views: 114.4ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=beef&commit=Search" for 127.0.0.1 at 2018-11-02 15:44:17 -0700 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"beef", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (7.4ms) +Completed 500 Internal Server Error in 1175ms (ActiveRecord: 0.0ms) + + + +NoMethodError - undefined method `total_pages' for #: + app/views/recipes/index.html.erb:12:in `block in _app_views_recipes_index_html_erb___22208776044709764_70359887057000' + app/views/recipes/index.html.erb:9:in `_app_views_recipes_index_html_erb___22208776044709764_70359887057000' + +Started POST "/__better_errors/feb5a5dc57c4a659/variables" for 127.0.0.1 at 2018-11-02 15:44:18 -0700 +Started GET "/search?utf8=%E2%9C%93&q=beef&commit=Search" for 127.0.0.1 at 2018-11-02 15:44:37 -0700 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"beef", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (2.3ms) +Completed 200 OK in 1217ms (Views: 35.5ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=beef&commit=Search" for 127.0.0.1 at 2018-11-02 15:58:18 -0700 +  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC + ↳ /Users/kjfitzpatrick/.rvm/gems/ruby-2.5.1/gems/activerecord-5.2.1/lib/active_record/log_subscriber.rb:98 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"beef", "commit"=>"Search"} +Completed 500 Internal Server Error in 1400ms (ActiveRecord: 0.0ms) + + + +NoMethodError - undefined method `paginate' for #: + app/controllers/recipes_controller.rb:8:in `index' + +Started POST "/__better_errors/5823e830bc9a7ef4/variables" for 127.0.0.1 at 2018-11-02 15:58:20 -0700 +Started GET "/search?utf8=%E2%9C%93&q=beef&commit=Search" for 127.0.0.1 at 2018-11-02 16:03:21 -0700 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"beef", "commit"=>"Search"} +Completed 500 Internal Server Error in 1665ms (ActiveRecord: 0.0ms) + + + +NoMethodError - undefined method `paginate' for #: + app/controllers/recipes_controller.rb:8:in `index' + +Started POST "/__better_errors/43f44a11177cc0d7/variables" for 127.0.0.1 at 2018-11-02 16:03:23 -0700 +Started GET "/search?utf8=%E2%9C%93&q=beef&commit=Search" for 127.0.0.1 at 2018-11-02 16:03:26 -0700 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"beef", "commit"=>"Search"} +Completed 500 Internal Server Error in 1334ms (ActiveRecord: 0.0ms) + + + +NoMethodError - undefined method `paginate' for #: + app/controllers/recipes_controller.rb:8:in `index' + +Started POST "/__better_errors/05047cfb34810ac7/variables" for 127.0.0.1 at 2018-11-02 16:03:28 -0700 +Started GET "/search?utf8=%E2%9C%93&q=beef&commit=Search" for 127.0.0.1 at 2018-11-02 16:34:18 -0700 + +SyntaxError - syntax error, unexpected end-of-input, expecting keyword_end: + app/controllers/recipes_controller.rb:19:in `' + +Started POST "/__better_errors/b61d374e0b7c034e/variables" for 127.0.0.1 at 2018-11-02 16:34:18 -0700 +Started GET "/search?utf8=%E2%9C%93&q=beef&commit=Search" for 127.0.0.1 at 2018-11-02 16:34:36 -0700 + +LoadError - cannot load such file -- will_paginate/array: + app/controllers/recipes_controller.rb:2:in `' + app/controllers/recipes_controller.rb:1:in `
' + +Started POST "/__better_errors/a2ea354c52e4f95d/variables" for 127.0.0.1 at 2018-11-02 16:34:36 -0700 +Started GET "/search?utf8=%E2%9C%93&q=beef&commit=Search" for 127.0.0.1 at 2018-11-02 16:34:39 -0700 + +LoadError - cannot load such file -- will_paginate/array: + app/controllers/recipes_controller.rb:2:in `' + app/controllers/recipes_controller.rb:1:in `
' + +Started POST "/__better_errors/647e6a01d22bbf08/variables" for 127.0.0.1 at 2018-11-02 16:34:39 -0700 +Started GET "/search?utf8=%E2%9C%93&q=beef&commit=Search" for 127.0.0.1 at 2018-11-02 16:34:53 -0700 + +LoadError - cannot load such file -- will_paginate: + app/controllers/recipes_controller.rb:2:in `' + app/controllers/recipes_controller.rb:1:in `
' + +Started POST "/__better_errors/c6c65ed0b8f5d302/variables" for 127.0.0.1 at 2018-11-02 16:34:53 -0700 +Started GET "/search?utf8=%E2%9C%93&q=beef&commit=Search" for 127.0.0.1 at 2018-11-02 16:40:58 -0700 +  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC + ↳ /Users/kjfitzpatrick/.rvm/gems/ruby-2.5.1/gems/activerecord-5.2.1/lib/active_record/log_subscriber.rb:98 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"beef", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (4.8ms) +Completed 200 OK in 2564ms (Views: 216.7ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=eggs&commit=Search" for 127.0.0.1 at 2018-11-02 16:41:23 -0700 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"eggs", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 1580ms (Views: 54.0ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=eggs&commit=Search" for 127.0.0.1 at 2018-11-02 16:43:22 -0700 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"eggs", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (2.1ms) +Completed 200 OK in 2459ms (Views: 50.2ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=eggs&commit=Search" for 127.0.0.1 at 2018-11-02 16:43:35 -0700 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"eggs", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (2.5ms) +Completed 200 OK in 2090ms (Views: 58.5ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=eggs&commit=Search" for 127.0.0.1 at 2018-11-03 09:53:00 -0700 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"eggs", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (28.9ms) +Completed 200 OK in 2641ms (Views: 106.2ms | ActiveRecord: 0.0ms) + + +Started GET "/?commit=Search&page=2&q=eggs&utf8=%E2%9C%93" for 127.0.0.1 at 2018-11-03 09:53:10 -0700 +Processing by RecipesController#index as HTML + Parameters: {"commit"=>"Search", "page"=>"2", "q"=>"eggs", "utf8"=>"✓"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (2.8ms) +Completed 200 OK in 3142ms (Views: 30.3ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 127.0.0.1 at 2018-11-03 16:07:44 -0700 +  (1.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC + ↳ /Users/kjfitzpatrick/.rvm/gems/ruby-2.5.1/gems/activerecord-5.2.1/lib/active_record/log_subscriber.rb:98 +Processing by RecipesController#index as HTML + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (1.9ms) +Completed 500 Internal Server Error in 1535ms (ActiveRecord: 0.0ms) + + + +Sass::SyntaxError - Invalid CSS after "...ort "bootstrap"": expected "{", was ";": + app/views/layouts/application.html.erb:8:in `_app_views_layouts_application_html_erb__4128253184315918423_70149139855940' + +Started POST "/__better_errors/ffebc4b263c5af90/variables" for 127.0.0.1 at 2018-11-03 16:07:46 -0700 +Started GET "/" for 127.0.0.1 at 2018-11-03 16:08:24 -0700 +Processing by RecipesController#index as HTML + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.6ms) +Completed 200 OK in 933ms (Views: 245.7ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 127.0.0.1 at 2018-11-03 16:08:53 -0700 +Processing by RecipesController#index as HTML + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.6ms) +Completed 200 OK in 538ms (Views: 102.5ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 127.0.0.1 at 2018-11-03 16:09:48 -0700 +Processing by RecipesController#index as HTML + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.5ms) +Completed 500 Internal Server Error in 435ms (ActiveRecord: 0.0ms) + + + +Sass::SyntaxError - Invalid CSS after "...ort "bootstrap"": expected "{", was ";": + app/views/layouts/application.html.erb:11:in `_app_views_layouts_application_html_erb__4128253184315918423_70149182329920' + +Started POST "/__better_errors/c9497458f08e50cf/variables" for 127.0.0.1 at 2018-11-03 16:09:48 -0700 +Started GET "/" for 127.0.0.1 at 2018-11-03 16:11:46 -0700 +Processing by RecipesController#index as HTML + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.7ms) +Completed 500 Internal Server Error in 467ms (ActiveRecord: 0.0ms) + + + +Sass::SyntaxError - Invalid CSS after "...ort "bootstrap"": expected "{", was ";": + app/views/layouts/application.html.erb:11:in `_app_views_layouts_application_html_erb__4128253184315918423_70149162200180' + +Started POST "/__better_errors/c46eaaed61fd901d/variables" for 127.0.0.1 at 2018-11-03 16:11:46 -0700 +Started GET "/" for 127.0.0.1 at 2018-11-03 16:13:54 -0700 +Processing by RecipesController#index as HTML + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.5ms) +Completed 500 Internal Server Error in 584ms (ActiveRecord: 0.0ms) + + + +Sass::SyntaxError - Invalid CSS after "...ort "bootstrap"": expected "{", was ";": + app/views/layouts/application.html.erb:11:in `_app_views_layouts_application_html_erb__4128253184315918423_70149110833240' + +Started POST "/__better_errors/26181fda3716470d/variables" for 127.0.0.1 at 2018-11-03 16:13:55 -0700 +Started GET "/" for 127.0.0.1 at 2018-11-03 16:16:48 -0700 +Processing by RecipesController#index as HTML + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.7ms) +Completed 500 Internal Server Error in 482ms (ActiveRecord: 0.0ms) + + + +Sass::SyntaxError - Invalid CSS after "...ort "bootstrap"": expected "{", was ";": + app/views/layouts/application.html.erb:11:in `_app_views_layouts_application_html_erb__4128253184315918423_70149085357360' + +Started POST "/__better_errors/b53ffa3f806c31a3/variables" for 127.0.0.1 at 2018-11-03 16:16:49 -0700 +Started GET "/" for 127.0.0.1 at 2018-11-03 16:31:20 -0700 +Processing by RecipesController#index as HTML + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.7ms) +Completed 500 Internal Server Error in 957ms (ActiveRecord: 0.0ms) + + + +Sass::SyntaxError - Invalid CSS after "...ort "bootstrap"": expected "{", was ";": + app/views/layouts/application.html.erb:11:in `_app_views_layouts_application_html_erb__4128253184315918423_70149162391980' + +Started POST "/__better_errors/3406ceed00db7b23/variables" for 127.0.0.1 at 2018-11-03 16:31:21 -0700 +Started GET "/" for 127.0.0.1 at 2018-11-03 16:33:12 -0700 +Processing by RecipesController#index as HTML + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.6ms) +Completed 500 Internal Server Error in 478ms (ActiveRecord: 0.0ms) + + + +Sass::SyntaxError - Invalid CSS after "...ort "bootstrap"": expected "{", was ";": + app/views/layouts/application.html.erb:11:in `_app_views_layouts_application_html_erb__4128253184315918423_70149166697200' + +Started POST "/__better_errors/2e295e78cc0fef49/variables" for 127.0.0.1 at 2018-11-03 16:33:13 -0700 +Started GET "/" for 127.0.0.1 at 2018-11-03 16:33:16 -0700 +Processing by RecipesController#index as HTML + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.6ms) +Completed 500 Internal Server Error in 641ms (ActiveRecord: 0.0ms) + + + +Sass::SyntaxError - Invalid CSS after "...ort "bootstrap"": expected "{", was ";": + app/views/layouts/application.html.erb:11:in `_app_views_layouts_application_html_erb__4128253184315918423_70149103905300' + +Started POST "/__better_errors/5ca63c771c094e8e/variables" for 127.0.0.1 at 2018-11-03 16:33:16 -0700 +Started GET "/" for 127.0.0.1 at 2018-11-03 16:34:46 -0700 +Processing by RecipesController#index as HTML + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.7ms) +Completed 500 Internal Server Error in 475ms (ActiveRecord: 0.0ms) + + + +Sass::SyntaxError - Invalid CSS after "...ort "bootstrap"": expected "{", was ";": + app/views/layouts/application.html.erb:8:in `_app_views_layouts_application_html_erb__4128253184315918423_70149111440620' + +Started POST "/__better_errors/619746134e8a2b79/variables" for 127.0.0.1 at 2018-11-03 16:34:46 -0700 +Started GET "/" for 127.0.0.1 at 2018-11-03 16:34:48 -0700 +Processing by RecipesController#index as HTML + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.7ms) +Completed 500 Internal Server Error in 450ms (ActiveRecord: 0.0ms) + + + +Sass::SyntaxError - Invalid CSS after "...ort "bootstrap"": expected "{", was ";": + app/views/layouts/application.html.erb:8:in `_app_views_layouts_application_html_erb__4128253184315918423_70149167007180' + +Started POST "/__better_errors/80fac44a2167365e/variables" for 127.0.0.1 at 2018-11-03 16:34:49 -0700 +Started GET "/" for 127.0.0.1 at 2018-11-03 16:34:53 -0700 +Processing by RecipesController#index as HTML + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.6ms) +Completed 500 Internal Server Error in 430ms (ActiveRecord: 0.0ms) + + + +Sass::SyntaxError - Invalid CSS after "...ort "bootstrap"": expected "{", was ";": + app/views/layouts/application.html.erb:8:in `_app_views_layouts_application_html_erb__4128253184315918423_70149092129140' + +Started POST "/__better_errors/b2559782c190c4c6/variables" for 127.0.0.1 at 2018-11-03 16:34:53 -0700 +Started POST "/__better_errors/b2559782c190c4c6/eval" for 127.0.0.1 at 2018-11-03 16:35:09 -0700 +Started POST "/__better_errors/b2559782c190c4c6/eval" for 127.0.0.1 at 2018-11-03 16:36:28 -0700 +Started POST "/__better_errors/b2559782c190c4c6/eval" for 127.0.0.1 at 2018-11-03 16:36:43 -0700 +Started GET "/" for 127.0.0.1 at 2018-11-03 16:38:00 -0700 +Processing by RecipesController#index as HTML + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.5ms) +Completed 500 Internal Server Error in 616ms (ActiveRecord: 0.0ms) + + + +SyntaxError - syntax error, unexpected ',', expecting &. or :: or '[' or '.' +...eet_link_tag, 'application', media: 'all', 'data-turbolin... +... ^ +/Users/kjfitzpatrick/ada/week13/api-muncher/Api-Muncher/app/views/layouts/application.html.erb:8: syntax error, unexpected ',', expecting ')' +... 'application', media: 'all', 'data-turbolinks-track': 're... +... ^ +/Users/kjfitzpatrick/ada/week13/api-muncher/Api-Muncher/app/views/layouts/application.html.erb:9: syntax error, unexpected ',', expecting &. or :: or '[' or '.' +...ipt_include_tag, 'application', 'data-turbolinks-track': 're... +... ^: + app/views/layouts/application.html.erb:8:in `' + +Started POST "/__better_errors/ed73bac4a4b415ca/variables" for 127.0.0.1 at 2018-11-03 16:38:01 -0700 +Started GET "/" for 127.0.0.1 at 2018-11-03 16:38:51 -0700 +Processing by RecipesController#index as HTML + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.7ms) +Completed 500 Internal Server Error in 496ms (ActiveRecord: 0.0ms) + + + +Sass::SyntaxError - Invalid CSS after "...ort "bootstrap"": expected "{", was ";": + app/views/layouts/application.html.erb:8:in `_app_views_layouts_application_html_erb__4128253184315918423_70149165394440' + +Started POST "/__better_errors/2e3369d772009e43/variables" for 127.0.0.1 at 2018-11-03 16:38:52 -0700 +Started GET "/" for 127.0.0.1 at 2018-11-03 16:38:54 -0700 +Processing by RecipesController#index as HTML + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.7ms) +Completed 500 Internal Server Error in 452ms (ActiveRecord: 0.0ms) + + + +Sass::SyntaxError - Invalid CSS after "...ort "bootstrap"": expected "{", was ";": + app/views/layouts/application.html.erb:8:in `_app_views_layouts_application_html_erb__4128253184315918423_70149162639860' + +Started POST "/__better_errors/6e5c1b5a7fdd5f20/variables" for 127.0.0.1 at 2018-11-03 16:38:54 -0700 +Started GET "/" for 127.0.0.1 at 2018-11-03 16:48:23 -0700 +Processing by RecipesController#index as HTML + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.5ms) +Completed 500 Internal Server Error in 623ms (ActiveRecord: 0.0ms) + + + +Sprockets::Rails::Helper::AssetNotFound - The asset "defaults.css" is not present in the asset pipeline.: + app/views/layouts/application.html.erb:8:in `_app_views_layouts_application_html_erb__4128253184315918423_70149162955040' + +Started POST "/__better_errors/8375047a8f3a51e8/variables" for 127.0.0.1 at 2018-11-03 16:48:24 -0700 +Started GET "/" for 127.0.0.1 at 2018-11-03 16:49:46 -0700 +Processing by RecipesController#index as HTML + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.6ms) +Completed 500 Internal Server Error in 497ms (ActiveRecord: 0.0ms) + + + +Sass::SyntaxError - Invalid CSS after "...ort "bootstrap"": expected "{", was ";": + app/views/layouts/application.html.erb:8:in `_app_views_layouts_application_html_erb__4128253184315918423_70149161821540' + +Started POST "/__better_errors/c82e0050e8dd6b2f/variables" for 127.0.0.1 at 2018-11-03 16:49:46 -0700 +Started GET "/" for 127.0.0.1 at 2018-11-03 16:50:00 -0700 +Processing by RecipesController#index as HTML + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.6ms) +Completed 500 Internal Server Error in 457ms (ActiveRecord: 0.0ms) + + + +Sprockets::Rails::Helper::AssetNotFound - The asset "applications.css" is not present in the asset pipeline.: + app/views/layouts/application.html.erb:8:in `_app_views_layouts_application_html_erb__4128253184315918423_70149161149200' + +Started POST "/__better_errors/235d79244497a766/variables" for 127.0.0.1 at 2018-11-03 16:50:00 -0700 +Started GET "/" for 127.0.0.1 at 2018-11-03 16:50:13 -0700 +Processing by RecipesController#index as HTML + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.8ms) +Completed 500 Internal Server Error in 581ms (ActiveRecord: 0.0ms) + + + +Sass::SyntaxError - Invalid CSS after "...ort "bootstrap"": expected "{", was ";": + app/views/layouts/application.html.erb:8:in `_app_views_layouts_application_html_erb__4128253184315918423_70149092124980' + +Started POST "/__better_errors/ea42091c5b62cfea/variables" for 127.0.0.1 at 2018-11-03 16:50:14 -0700 +Started GET "/" for 127.0.0.1 at 2018-11-03 16:50:28 -0700 +Processing by RecipesController#index as HTML + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.6ms) +Completed 200 OK in 2153ms (Views: 1721.4ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 127.0.0.1 at 2018-11-03 16:50:36 -0700 +Processing by RecipesController#index as HTML + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 454ms (Views: 17.0ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 127.0.0.1 at 2018-11-03 16:53:22 -0700 +Processing by RecipesController#index as HTML + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 508ms (Views: 15.5ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 127.0.0.1 at 2018-11-03 16:53:25 -0700 +Processing by RecipesController#index as HTML + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.6ms) +Completed 200 OK in 1326ms (Views: 13.9ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 127.0.0.1 at 2018-11-03 16:54:10 -0700 +Processing by RecipesController#index as HTML + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.6ms) +Completed 200 OK in 487ms (Views: 14.1ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 127.0.0.1 at 2018-11-03 16:55:55 -0700 +Processing by RecipesController#index as HTML + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.6ms) +Completed 200 OK in 2154ms (Views: 1707.9ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 127.0.0.1 at 2018-11-03 16:56:00 -0700 +Processing by RecipesController#index as HTML + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 867ms (Views: 15.6ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 127.0.0.1 at 2018-11-03 16:56:21 -0700 +Processing by RecipesController#index as HTML + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.7ms) +Completed 200 OK in 2044ms (Views: 1616.1ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 127.0.0.1 at 2018-11-03 16:56:26 -0700 +Processing by RecipesController#index as HTML + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.7ms) +Completed 200 OK in 445ms (Views: 13.6ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 127.0.0.1 at 2018-11-03 16:56:40 -0700 +Processing by RecipesController#index as HTML + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.6ms) +Completed 200 OK in 2122ms (Views: 1624.8ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 127.0.0.1 at 2018-11-03 16:56:56 -0700 +Processing by RecipesController#index as HTML + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 2097ms (Views: 1611.6ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 127.0.0.1 at 2018-11-03 16:59:24 -0700 +Processing by RecipesController#index as HTML + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 616ms (Views: 15.5ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 127.0.0.1 at 2018-11-03 16:59:29 -0700 +Processing by RecipesController#index as HTML + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.6ms) +Completed 200 OK in 504ms (Views: 14.5ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 127.0.0.1 at 2018-11-03 17:02:34 -0700 +Processing by RecipesController#index as HTML + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.6ms) +Completed 200 OK in 506ms (Views: 16.1ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 127.0.0.1 at 2018-11-03 17:02:36 -0700 +Processing by RecipesController#index as HTML + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.7ms) +Completed 200 OK in 481ms (Views: 16.1ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 127.0.0.1 at 2018-11-03 17:03:04 -0700 +Processing by RecipesController#index as HTML + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.7ms) +Completed 200 OK in 1022ms (Views: 14.4ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 127.0.0.1 at 2018-11-03 17:03:51 -0700 +Processing by RecipesController#index as HTML + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.7ms) +Completed 200 OK in 1725ms (Views: 15.3ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 127.0.0.1 at 2018-11-03 17:03:56 -0700 +Processing by RecipesController#index as HTML + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.7ms) +Completed 200 OK in 542ms (Views: 16.3ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 127.0.0.1 at 2018-11-03 17:04:41 -0700 +Processing by RecipesController#index as HTML + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.6ms) +Completed 200 OK in 854ms (Views: 14.0ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 127.0.0.1 at 2018-11-03 17:04:45 -0700 +Processing by RecipesController#index as HTML + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.7ms) +Completed 200 OK in 491ms (Views: 14.1ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 127.0.0.1 at 2018-11-03 17:05:16 -0700 +Processing by RecipesController#index as HTML + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.5ms) +Completed 200 OK in 451ms (Views: 14.4ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 127.0.0.1 at 2018-11-03 17:05:18 -0700 +Processing by RecipesController#index as HTML + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.7ms) +Completed 200 OK in 425ms (Views: 15.5ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 127.0.0.1 at 2018-11-03 17:05:19 -0700 +Processing by RecipesController#index as HTML + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.7ms) +Completed 200 OK in 470ms (Views: 15.7ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 127.0.0.1 at 2018-11-03 17:05:25 -0700 +Processing by RecipesController#index as HTML + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.6ms) +Completed 200 OK in 478ms (Views: 31.5ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 127.0.0.1 at 2018-11-03 17:05:59 -0700 +Processing by RecipesController#index as HTML + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.6ms) +Completed 200 OK in 434ms (Views: 14.7ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 127.0.0.1 at 2018-11-03 17:06:07 -0700 +Processing by RecipesController#index as HTML + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.7ms) +Completed 200 OK in 476ms (Views: 14.8ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 127.0.0.1 at 2018-11-03 17:06:12 -0700 +Processing by RecipesController#index as HTML + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 448ms (Views: 14.4ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 127.0.0.1 at 2018-11-03 17:06:53 -0700 +Processing by RecipesController#index as HTML + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.6ms) +Completed 500 Internal Server Error in 1694ms (ActiveRecord: 0.0ms) + + + +Sass::SyntaxError - An @import loop has been found: + /Users/kjfitzpatrick/ada/week13/api-muncher/Api-Muncher/app/assets/stylesheets/application.scss imports /Users/kjfitzpatrick/ada/week13/api-muncher/Api-Muncher/app/assets/stylesheets + /Users/kjfitzpatrick/ada/week13/api-muncher/Api-Muncher/app/assets/stylesheets imports /Users/kjfitzpatrick/ada/week13/api-muncher/Api-Muncher/app/assets/stylesheets/recipes.scss + /Users/kjfitzpatrick/ada/week13/api-muncher/Api-Muncher/app/assets/stylesheets/recipes.scss imports /Users/kjfitzpatrick/ada/week13/api-muncher/Api-Muncher/app/assets/stylesheets: + app/views/layouts/application.html.erb:8:in `_app_views_layouts_application_html_erb__4128253184315918423_70149161351200' + +Started POST "/__better_errors/254ed0a71d285da6/variables" for 127.0.0.1 at 2018-11-03 17:06:55 -0700 +Started GET "/" for 127.0.0.1 at 2018-11-03 17:07:27 -0700 +Processing by RecipesController#index as HTML + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 2100ms (Views: 1627.2ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 127.0.0.1 at 2018-11-03 17:12:11 -0700 +Processing by RecipesController#index as HTML + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (1.3ms) +Completed 200 OK in 3339ms (Views: 1563.0ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 127.0.0.1 at 2018-11-03 17:12:46 -0700 +Processing by RecipesController#index as HTML + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 2168ms (Views: 1685.6ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 127.0.0.1 at 2018-11-03 17:13:09 -0700 +Processing by RecipesController#index as HTML + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 1780ms (Views: 18.1ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 127.0.0.1 at 2018-11-03 17:13:13 -0700 +Processing by RecipesController#index as HTML + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.6ms) +Completed 200 OK in 446ms (Views: 14.8ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 127.0.0.1 at 2018-11-03 17:14:20 -0700 +Processing by RecipesController#index as HTML + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.6ms) +Completed 200 OK in 489ms (Views: 13.8ms | ActiveRecord: 0.0ms) + + +Started GET "/images/Death_to_Stock_Fall_Dinner_5.jpg" for 127.0.0.1 at 2018-11-03 17:14:21 -0700 + +ActionController::RoutingError (No route matches [GET] "/images/Death_to_Stock_Fall_Dinner_5.jpg"): + +actionpack (5.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:65:in `call' +web-console (3.7.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.7.0) lib/web_console/middleware.rb:30:in `block in call' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `catch' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call' +railties (5.2.1) lib/rails/rack/logger.rb:38:in `call_app' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `block in call' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `block in tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:28:in `tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `tagged' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/remote_ip.rb:81:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/request_id.rb:27:in `call' +rack (2.0.5) lib/rack/method_override.rb:22:in `call' +rack (2.0.5) lib/rack/runtime.rb:22:in `call' +activesupport (5.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/executor.rb:14:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/static.rb:127:in `call' +rack (2.0.5) lib/rack/sendfile.rb:111:in `call' +railties (5.2.1) lib/rails/engine.rb:524:in `call' +puma (3.12.0) lib/puma/configuration.rb:225:in `call' +puma (3.12.0) lib/puma/server.rb:658:in `handle_request' +puma (3.12.0) lib/puma/server.rb:472:in `process_client' +puma (3.12.0) lib/puma/server.rb:332:in `block in run' +puma (3.12.0) lib/puma/thread_pool.rb:133:in `block in spawn_thread' +Started GET "/" for 127.0.0.1 at 2018-11-03 17:15:16 -0700 +Processing by RecipesController#index as HTML + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.7ms) +Completed 200 OK in 453ms (Views: 15.3ms | ActiveRecord: 0.0ms) + + +Started GET "/images/Death_to_Stock_Fall_Dinner_5.jpg" for 127.0.0.1 at 2018-11-03 17:15:16 -0700 + +ActionController::RoutingError (No route matches [GET] "/images/Death_to_Stock_Fall_Dinner_5.jpg"): + +actionpack (5.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:65:in `call' +web-console (3.7.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.7.0) lib/web_console/middleware.rb:30:in `block in call' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `catch' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call' +railties (5.2.1) lib/rails/rack/logger.rb:38:in `call_app' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `block in call' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `block in tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:28:in `tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `tagged' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/remote_ip.rb:81:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/request_id.rb:27:in `call' +rack (2.0.5) lib/rack/method_override.rb:22:in `call' +rack (2.0.5) lib/rack/runtime.rb:22:in `call' +activesupport (5.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/executor.rb:14:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/static.rb:127:in `call' +rack (2.0.5) lib/rack/sendfile.rb:111:in `call' +railties (5.2.1) lib/rails/engine.rb:524:in `call' +puma (3.12.0) lib/puma/configuration.rb:225:in `call' +puma (3.12.0) lib/puma/server.rb:658:in `handle_request' +puma (3.12.0) lib/puma/server.rb:472:in `process_client' +puma (3.12.0) lib/puma/server.rb:332:in `block in run' +puma (3.12.0) lib/puma/thread_pool.rb:133:in `block in spawn_thread' +Started GET "/" for 127.0.0.1 at 2018-11-03 17:15:21 -0700 +Processing by RecipesController#index as HTML + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.6ms) +Completed 200 OK in 442ms (Views: 13.5ms | ActiveRecord: 0.0ms) + + +Started GET "/images/Death_to_Stock_Fall_Dinner_5.jpg" for 127.0.0.1 at 2018-11-03 17:15:21 -0700 + +ActionController::RoutingError (No route matches [GET] "/images/Death_to_Stock_Fall_Dinner_5.jpg"): + +actionpack (5.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:65:in `call' +web-console (3.7.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.7.0) lib/web_console/middleware.rb:30:in `block in call' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `catch' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call' +railties (5.2.1) lib/rails/rack/logger.rb:38:in `call_app' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `block in call' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `block in tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:28:in `tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `tagged' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/remote_ip.rb:81:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/request_id.rb:27:in `call' +rack (2.0.5) lib/rack/method_override.rb:22:in `call' +rack (2.0.5) lib/rack/runtime.rb:22:in `call' +activesupport (5.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/executor.rb:14:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/static.rb:127:in `call' +rack (2.0.5) lib/rack/sendfile.rb:111:in `call' +railties (5.2.1) lib/rails/engine.rb:524:in `call' +puma (3.12.0) lib/puma/configuration.rb:225:in `call' +puma (3.12.0) lib/puma/server.rb:658:in `handle_request' +puma (3.12.0) lib/puma/server.rb:472:in `process_client' +puma (3.12.0) lib/puma/server.rb:332:in `block in run' +puma (3.12.0) lib/puma/thread_pool.rb:133:in `block in spawn_thread' +Started GET "/" for 127.0.0.1 at 2018-11-03 17:15:59 -0700 +Processing by RecipesController#index as HTML + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.6ms) +Completed 200 OK in 457ms (Views: 15.0ms | ActiveRecord: 0.0ms) + + +Started GET "/images/Death_to_Stock_Fall_Dinner_5.jpg" for 127.0.0.1 at 2018-11-03 17:16:00 -0700 + +ActionController::RoutingError (No route matches [GET] "/images/Death_to_Stock_Fall_Dinner_5.jpg"): + +actionpack (5.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:65:in `call' +web-console (3.7.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.7.0) lib/web_console/middleware.rb:30:in `block in call' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `catch' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call' +railties (5.2.1) lib/rails/rack/logger.rb:38:in `call_app' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `block in call' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `block in tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:28:in `tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `tagged' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/remote_ip.rb:81:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/request_id.rb:27:in `call' +rack (2.0.5) lib/rack/method_override.rb:22:in `call' +rack (2.0.5) lib/rack/runtime.rb:22:in `call' +activesupport (5.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/executor.rb:14:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/static.rb:127:in `call' +rack (2.0.5) lib/rack/sendfile.rb:111:in `call' +railties (5.2.1) lib/rails/engine.rb:524:in `call' +puma (3.12.0) lib/puma/configuration.rb:225:in `call' +puma (3.12.0) lib/puma/server.rb:658:in `handle_request' +puma (3.12.0) lib/puma/server.rb:472:in `process_client' +puma (3.12.0) lib/puma/server.rb:332:in `block in run' +puma (3.12.0) lib/puma/thread_pool.rb:133:in `block in spawn_thread' +Started GET "/" for 127.0.0.1 at 2018-11-03 17:16:26 -0700 +Processing by RecipesController#index as HTML + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.6ms) +Completed 200 OK in 507ms (Views: 12.9ms | ActiveRecord: 0.0ms) + + +Started GET "/images/Death_to_Stock_Fall_Dinner_5.jpg" for 127.0.0.1 at 2018-11-03 17:16:26 -0700 + +ActionController::RoutingError (No route matches [GET] "/images/Death_to_Stock_Fall_Dinner_5.jpg"): + +actionpack (5.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:65:in `call' +web-console (3.7.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.7.0) lib/web_console/middleware.rb:30:in `block in call' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `catch' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call' +railties (5.2.1) lib/rails/rack/logger.rb:38:in `call_app' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `block in call' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `block in tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:28:in `tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `tagged' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/remote_ip.rb:81:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/request_id.rb:27:in `call' +rack (2.0.5) lib/rack/method_override.rb:22:in `call' +rack (2.0.5) lib/rack/runtime.rb:22:in `call' +activesupport (5.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/executor.rb:14:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/static.rb:127:in `call' +rack (2.0.5) lib/rack/sendfile.rb:111:in `call' +railties (5.2.1) lib/rails/engine.rb:524:in `call' +puma (3.12.0) lib/puma/configuration.rb:225:in `call' +puma (3.12.0) lib/puma/server.rb:658:in `handle_request' +puma (3.12.0) lib/puma/server.rb:472:in `process_client' +puma (3.12.0) lib/puma/server.rb:332:in `block in run' +puma (3.12.0) lib/puma/thread_pool.rb:133:in `block in spawn_thread' +Started GET "/" for 127.0.0.1 at 2018-11-03 17:16:29 -0700 +Processing by RecipesController#index as HTML + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.6ms) +Completed 200 OK in 555ms (Views: 14.8ms | ActiveRecord: 0.0ms) + + +Started GET "/images/Death_to_Stock_Fall_Dinner_5.jpg" for 127.0.0.1 at 2018-11-03 17:16:30 -0700 + +ActionController::RoutingError (No route matches [GET] "/images/Death_to_Stock_Fall_Dinner_5.jpg"): + +actionpack (5.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:65:in `call' +web-console (3.7.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.7.0) lib/web_console/middleware.rb:30:in `block in call' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `catch' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call' +railties (5.2.1) lib/rails/rack/logger.rb:38:in `call_app' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `block in call' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `block in tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:28:in `tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `tagged' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/remote_ip.rb:81:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/request_id.rb:27:in `call' +rack (2.0.5) lib/rack/method_override.rb:22:in `call' +rack (2.0.5) lib/rack/runtime.rb:22:in `call' +activesupport (5.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/executor.rb:14:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/static.rb:127:in `call' +rack (2.0.5) lib/rack/sendfile.rb:111:in `call' +railties (5.2.1) lib/rails/engine.rb:524:in `call' +puma (3.12.0) lib/puma/configuration.rb:225:in `call' +puma (3.12.0) lib/puma/server.rb:658:in `handle_request' +puma (3.12.0) lib/puma/server.rb:472:in `process_client' +puma (3.12.0) lib/puma/server.rb:332:in `block in run' +puma (3.12.0) lib/puma/thread_pool.rb:133:in `block in spawn_thread' +Started GET "/" for 127.0.0.1 at 2018-11-03 17:16:38 -0700 +Processing by RecipesController#index as HTML + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.6ms) +Completed 200 OK in 449ms (Views: 14.2ms | ActiveRecord: 0.0ms) + + +Started GET "/images/Death_to_Stock_Fall_Dinner_5.jpg" for 127.0.0.1 at 2018-11-03 17:16:38 -0700 + +ActionController::RoutingError (No route matches [GET] "/images/Death_to_Stock_Fall_Dinner_5.jpg"): + +actionpack (5.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:65:in `call' +web-console (3.7.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.7.0) lib/web_console/middleware.rb:30:in `block in call' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `catch' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call' +railties (5.2.1) lib/rails/rack/logger.rb:38:in `call_app' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `block in call' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `block in tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:28:in `tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `tagged' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/remote_ip.rb:81:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/request_id.rb:27:in `call' +rack (2.0.5) lib/rack/method_override.rb:22:in `call' +rack (2.0.5) lib/rack/runtime.rb:22:in `call' +activesupport (5.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/executor.rb:14:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/static.rb:127:in `call' +rack (2.0.5) lib/rack/sendfile.rb:111:in `call' +railties (5.2.1) lib/rails/engine.rb:524:in `call' +puma (3.12.0) lib/puma/configuration.rb:225:in `call' +puma (3.12.0) lib/puma/server.rb:658:in `handle_request' +puma (3.12.0) lib/puma/server.rb:472:in `process_client' +puma (3.12.0) lib/puma/server.rb:332:in `block in run' +puma (3.12.0) lib/puma/thread_pool.rb:133:in `block in spawn_thread' +Started GET "/" for 127.0.0.1 at 2018-11-03 17:17:24 -0700 +Processing by RecipesController#index as HTML + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.6ms) +Completed 200 OK in 446ms (Views: 13.6ms | ActiveRecord: 0.0ms) + + +Started GET "/images/Death_to_Stock_Fall_Dinner_5.jpg" for 127.0.0.1 at 2018-11-03 17:17:24 -0700 + +ActionController::RoutingError (No route matches [GET] "/images/Death_to_Stock_Fall_Dinner_5.jpg"): + +actionpack (5.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:65:in `call' +web-console (3.7.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.7.0) lib/web_console/middleware.rb:30:in `block in call' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `catch' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call' +railties (5.2.1) lib/rails/rack/logger.rb:38:in `call_app' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `block in call' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `block in tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:28:in `tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `tagged' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/remote_ip.rb:81:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/request_id.rb:27:in `call' +rack (2.0.5) lib/rack/method_override.rb:22:in `call' +rack (2.0.5) lib/rack/runtime.rb:22:in `call' +activesupport (5.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/executor.rb:14:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/static.rb:127:in `call' +rack (2.0.5) lib/rack/sendfile.rb:111:in `call' +railties (5.2.1) lib/rails/engine.rb:524:in `call' +puma (3.12.0) lib/puma/configuration.rb:225:in `call' +puma (3.12.0) lib/puma/server.rb:658:in `handle_request' +puma (3.12.0) lib/puma/server.rb:472:in `process_client' +puma (3.12.0) lib/puma/server.rb:332:in `block in run' +puma (3.12.0) lib/puma/thread_pool.rb:133:in `block in spawn_thread' +Started GET "/" for 127.0.0.1 at 2018-11-03 17:17:27 -0700 +Processing by RecipesController#index as HTML + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.6ms) +Completed 200 OK in 484ms (Views: 13.5ms | ActiveRecord: 0.0ms) + + +Started GET "/images/Death_to_Stock_Fall_Dinner_5.jpg" for 127.0.0.1 at 2018-11-03 17:17:27 -0700 + +ActionController::RoutingError (No route matches [GET] "/images/Death_to_Stock_Fall_Dinner_5.jpg"): + +actionpack (5.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:65:in `call' +web-console (3.7.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.7.0) lib/web_console/middleware.rb:30:in `block in call' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `catch' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call' +railties (5.2.1) lib/rails/rack/logger.rb:38:in `call_app' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `block in call' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `block in tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:28:in `tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `tagged' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/remote_ip.rb:81:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/request_id.rb:27:in `call' +rack (2.0.5) lib/rack/method_override.rb:22:in `call' +rack (2.0.5) lib/rack/runtime.rb:22:in `call' +activesupport (5.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/executor.rb:14:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/static.rb:127:in `call' +rack (2.0.5) lib/rack/sendfile.rb:111:in `call' +railties (5.2.1) lib/rails/engine.rb:524:in `call' +puma (3.12.0) lib/puma/configuration.rb:225:in `call' +puma (3.12.0) lib/puma/server.rb:658:in `handle_request' +puma (3.12.0) lib/puma/server.rb:472:in `process_client' +puma (3.12.0) lib/puma/server.rb:332:in `block in run' +puma (3.12.0) lib/puma/thread_pool.rb:133:in `block in spawn_thread' +Started GET "/" for 127.0.0.1 at 2018-11-03 17:17:46 -0700 +Processing by RecipesController#index as HTML + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.6ms) +Completed 200 OK in 452ms (Views: 14.7ms | ActiveRecord: 0.0ms) + + +Started GET "/images/Death_to_Stock_Fall_Dinner_5.jpg" for 127.0.0.1 at 2018-11-03 17:17:47 -0700 + +ActionController::RoutingError (No route matches [GET] "/images/Death_to_Stock_Fall_Dinner_5.jpg"): + +actionpack (5.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:65:in `call' +web-console (3.7.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.7.0) lib/web_console/middleware.rb:30:in `block in call' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `catch' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call' +railties (5.2.1) lib/rails/rack/logger.rb:38:in `call_app' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `block in call' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `block in tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:28:in `tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `tagged' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/remote_ip.rb:81:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/request_id.rb:27:in `call' +rack (2.0.5) lib/rack/method_override.rb:22:in `call' +rack (2.0.5) lib/rack/runtime.rb:22:in `call' +activesupport (5.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/executor.rb:14:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/static.rb:127:in `call' +rack (2.0.5) lib/rack/sendfile.rb:111:in `call' +railties (5.2.1) lib/rails/engine.rb:524:in `call' +puma (3.12.0) lib/puma/configuration.rb:225:in `call' +puma (3.12.0) lib/puma/server.rb:658:in `handle_request' +puma (3.12.0) lib/puma/server.rb:472:in `process_client' +puma (3.12.0) lib/puma/server.rb:332:in `block in run' +puma (3.12.0) lib/puma/thread_pool.rb:133:in `block in spawn_thread' +Started GET "/" for 127.0.0.1 at 2018-11-03 17:19:23 -0700 +Processing by RecipesController#index as HTML + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.7ms) +Completed 200 OK in 2509ms (Views: 1562.3ms | ActiveRecord: 0.0ms) + + +Started GET "/images/Death_to_Stock_Fall_Dinner_5.jpg" for 127.0.0.1 at 2018-11-03 17:19:25 -0700 + +ActionController::RoutingError (No route matches [GET] "/images/Death_to_Stock_Fall_Dinner_5.jpg"): + +actionpack (5.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:65:in `call' +web-console (3.7.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.7.0) lib/web_console/middleware.rb:30:in `block in call' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `catch' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call' +railties (5.2.1) lib/rails/rack/logger.rb:38:in `call_app' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `block in call' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `block in tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:28:in `tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `tagged' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/remote_ip.rb:81:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/request_id.rb:27:in `call' +rack (2.0.5) lib/rack/method_override.rb:22:in `call' +rack (2.0.5) lib/rack/runtime.rb:22:in `call' +activesupport (5.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/executor.rb:14:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/static.rb:127:in `call' +rack (2.0.5) lib/rack/sendfile.rb:111:in `call' +railties (5.2.1) lib/rails/engine.rb:524:in `call' +puma (3.12.0) lib/puma/configuration.rb:225:in `call' +puma (3.12.0) lib/puma/server.rb:658:in `handle_request' +puma (3.12.0) lib/puma/server.rb:472:in `process_client' +puma (3.12.0) lib/puma/server.rb:332:in `block in run' +puma (3.12.0) lib/puma/thread_pool.rb:133:in `block in spawn_thread' +Started GET "/" for 127.0.0.1 at 2018-11-03 17:20:11 -0700 +Processing by RecipesController#index as HTML + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 918ms (Views: 15.5ms | ActiveRecord: 0.0ms) + + +Started GET "/images/Death_to_Stock_Fall_Dinner_5.jpg" for 127.0.0.1 at 2018-11-03 17:20:12 -0700 + +ActionController::RoutingError (No route matches [GET] "/images/Death_to_Stock_Fall_Dinner_5.jpg"): + +actionpack (5.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:65:in `call' +web-console (3.7.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.7.0) lib/web_console/middleware.rb:30:in `block in call' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `catch' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call' +railties (5.2.1) lib/rails/rack/logger.rb:38:in `call_app' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `block in call' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `block in tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:28:in `tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `tagged' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/remote_ip.rb:81:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/request_id.rb:27:in `call' +rack (2.0.5) lib/rack/method_override.rb:22:in `call' +rack (2.0.5) lib/rack/runtime.rb:22:in `call' +activesupport (5.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/executor.rb:14:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/static.rb:127:in `call' +rack (2.0.5) lib/rack/sendfile.rb:111:in `call' +railties (5.2.1) lib/rails/engine.rb:524:in `call' +puma (3.12.0) lib/puma/configuration.rb:225:in `call' +puma (3.12.0) lib/puma/server.rb:658:in `handle_request' +puma (3.12.0) lib/puma/server.rb:472:in `process_client' +puma (3.12.0) lib/puma/server.rb:332:in `block in run' +puma (3.12.0) lib/puma/thread_pool.rb:133:in `block in spawn_thread' +Started GET "/" for 127.0.0.1 at 2018-11-03 17:34:58 -0700 +Processing by RecipesController#index as HTML + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.7ms) +Completed 200 OK in 703ms (Views: 15.7ms | ActiveRecord: 0.0ms) + + +Started GET "/images/Death_to_Stock_Fall_Dinner_5.jpg" for 127.0.0.1 at 2018-11-03 17:34:59 -0700 + +ActionController::RoutingError (No route matches [GET] "/images/Death_to_Stock_Fall_Dinner_5.jpg"): + +actionpack (5.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:65:in `call' +web-console (3.7.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.7.0) lib/web_console/middleware.rb:30:in `block in call' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `catch' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call' +railties (5.2.1) lib/rails/rack/logger.rb:38:in `call_app' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `block in call' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `block in tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:28:in `tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `tagged' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/remote_ip.rb:81:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/request_id.rb:27:in `call' +rack (2.0.5) lib/rack/method_override.rb:22:in `call' +rack (2.0.5) lib/rack/runtime.rb:22:in `call' +activesupport (5.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/executor.rb:14:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/static.rb:127:in `call' +rack (2.0.5) lib/rack/sendfile.rb:111:in `call' +railties (5.2.1) lib/rails/engine.rb:524:in `call' +puma (3.12.0) lib/puma/configuration.rb:225:in `call' +puma (3.12.0) lib/puma/server.rb:658:in `handle_request' +puma (3.12.0) lib/puma/server.rb:472:in `process_client' +puma (3.12.0) lib/puma/server.rb:332:in `block in run' +puma (3.12.0) lib/puma/thread_pool.rb:133:in `block in spawn_thread' +Started GET "/search?utf8=%E2%9C%93&q=nutella&commit=Search" for 127.0.0.1 at 2018-11-04 09:05:38 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"nutella", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (12.7ms) +Completed 200 OK in 1915ms (Views: 64.2ms | ActiveRecord: 0.0ms) + + +Started GET "/images/Death_to_Stock_Fall_Dinner_5.jpg" for 127.0.0.1 at 2018-11-04 09:05:40 -0800 + +ActionController::RoutingError (No route matches [GET] "/images/Death_to_Stock_Fall_Dinner_5.jpg"): + +actionpack (5.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:65:in `call' +web-console (3.7.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.7.0) lib/web_console/middleware.rb:30:in `block in call' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `catch' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call' +railties (5.2.1) lib/rails/rack/logger.rb:38:in `call_app' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `block in call' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `block in tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:28:in `tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `tagged' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/remote_ip.rb:81:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/request_id.rb:27:in `call' +rack (2.0.5) lib/rack/method_override.rb:22:in `call' +rack (2.0.5) lib/rack/runtime.rb:22:in `call' +activesupport (5.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/executor.rb:14:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/static.rb:127:in `call' +rack (2.0.5) lib/rack/sendfile.rb:111:in `call' +railties (5.2.1) lib/rails/engine.rb:524:in `call' +puma (3.12.0) lib/puma/configuration.rb:225:in `call' +puma (3.12.0) lib/puma/server.rb:658:in `handle_request' +puma (3.12.0) lib/puma/server.rb:472:in `process_client' +puma (3.12.0) lib/puma/server.rb:332:in `block in run' +puma (3.12.0) lib/puma/thread_pool.rb:133:in `block in spawn_thread' +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_39bc90b963a232f3c636b6a34bf0ea17" for 127.0.0.1 at 2018-11-04 09:06:26 -0800 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_39bc90b963a232f3c636b6a34bf0ea17"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (0.4ms) +Completed 200 OK in 891ms (Views: 31.7ms | ActiveRecord: 0.0ms) + + +Started GET "/images/Death_to_Stock_Fall_Dinner_5.jpg" for 127.0.0.1 at 2018-11-04 09:06:27 -0800 + +ActionController::RoutingError (No route matches [GET] "/images/Death_to_Stock_Fall_Dinner_5.jpg"): + +actionpack (5.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:65:in `call' +web-console (3.7.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.7.0) lib/web_console/middleware.rb:30:in `block in call' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `catch' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call' +railties (5.2.1) lib/rails/rack/logger.rb:38:in `call_app' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `block in call' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `block in tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:28:in `tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `tagged' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/remote_ip.rb:81:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/request_id.rb:27:in `call' +rack (2.0.5) lib/rack/method_override.rb:22:in `call' +rack (2.0.5) lib/rack/runtime.rb:22:in `call' +activesupport (5.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/executor.rb:14:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/static.rb:127:in `call' +rack (2.0.5) lib/rack/sendfile.rb:111:in `call' +railties (5.2.1) lib/rails/engine.rb:524:in `call' +puma (3.12.0) lib/puma/configuration.rb:225:in `call' +puma (3.12.0) lib/puma/server.rb:658:in `handle_request' +puma (3.12.0) lib/puma/server.rb:472:in `process_client' +puma (3.12.0) lib/puma/server.rb:332:in `block in run' +puma (3.12.0) lib/puma/thread_pool.rb:133:in `block in spawn_thread' +Started GET "/images/Death_to_Stock_Fall_Dinner_5.jpg" for 127.0.0.1 at 2018-11-04 09:06:47 -0800 + +ActionController::RoutingError (No route matches [GET] "/images/Death_to_Stock_Fall_Dinner_5.jpg"): + +actionpack (5.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:65:in `call' +web-console (3.7.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.7.0) lib/web_console/middleware.rb:30:in `block in call' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `catch' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call' +railties (5.2.1) lib/rails/rack/logger.rb:38:in `call_app' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `block in call' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `block in tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:28:in `tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `tagged' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/remote_ip.rb:81:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/request_id.rb:27:in `call' +rack (2.0.5) lib/rack/method_override.rb:22:in `call' +rack (2.0.5) lib/rack/runtime.rb:22:in `call' +activesupport (5.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/executor.rb:14:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/static.rb:127:in `call' +rack (2.0.5) lib/rack/sendfile.rb:111:in `call' +railties (5.2.1) lib/rails/engine.rb:524:in `call' +puma (3.12.0) lib/puma/configuration.rb:225:in `call' +puma (3.12.0) lib/puma/server.rb:658:in `handle_request' +puma (3.12.0) lib/puma/server.rb:472:in `process_client' +puma (3.12.0) lib/puma/server.rb:332:in `block in run' +puma (3.12.0) lib/puma/thread_pool.rb:133:in `block in spawn_thread' +Started GET "/search?utf8=%E2%9C%93&q=nutella&commit=Search" for 127.0.0.1 at 2018-11-04 09:13:06 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"nutella", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (3.3ms) +Completed 200 OK in 3434ms (Views: 1899.9ms | ActiveRecord: 0.0ms) + + +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_a854ed21ae15de78bb9138b2146d1226" for 127.0.0.1 at 2018-11-04 09:13:16 -0800 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_a854ed21ae15de78bb9138b2146d1226"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (0.6ms) +Completed 200 OK in 558ms (Views: 15.4ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=nutella&commit=Search" for 127.0.0.1 at 2018-11-04 09:13:59 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"nutella", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (3.5ms) +Completed 200 OK in 1435ms (Views: 16.4ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=nutella&commit=Search" for 127.0.0.1 at 2018-11-04 10:33:24 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"nutella", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.8ms) +Completed 500 Internal Server Error in 1664ms (ActiveRecord: 0.0ms) + + + +SyntaxError - syntax error, unexpected tIDENTIFIER, expecting ')' +...g(:q, "Find your flavor...") id="searchBox");@output_buffer.... +... ^~: + app/views/recipes/index.html.erb:4:in `' + +Started POST "/__better_errors/da9be256d99278df/variables" for 127.0.0.1 at 2018-11-04 10:33:26 -0800 +Started GET "/images/Death_to_Stock_Fall_Dinner_5.jpg" for 127.0.0.1 at 2018-11-04 10:33:56 -0800 + +ActionController::RoutingError (No route matches [GET] "/images/Death_to_Stock_Fall_Dinner_5.jpg"): + +actionpack (5.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:65:in `call' +web-console (3.7.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.7.0) lib/web_console/middleware.rb:30:in `block in call' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `catch' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call' +railties (5.2.1) lib/rails/rack/logger.rb:38:in `call_app' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `block in call' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `block in tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:28:in `tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `tagged' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/remote_ip.rb:81:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/request_id.rb:27:in `call' +rack (2.0.5) lib/rack/method_override.rb:22:in `call' +rack (2.0.5) lib/rack/runtime.rb:22:in `call' +activesupport (5.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/executor.rb:14:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/static.rb:127:in `call' +rack (2.0.5) lib/rack/sendfile.rb:111:in `call' +railties (5.2.1) lib/rails/engine.rb:524:in `call' +puma (3.12.0) lib/puma/configuration.rb:225:in `call' +puma (3.12.0) lib/puma/server.rb:658:in `handle_request' +puma (3.12.0) lib/puma/server.rb:472:in `process_client' +puma (3.12.0) lib/puma/server.rb:332:in `block in run' +puma (3.12.0) lib/puma/thread_pool.rb:133:in `block in spawn_thread' +Started GET "/" for 127.0.0.1 at 2018-11-04 10:34:32 -0800 +Processing by RecipesController#index as HTML + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (1.0ms) +Completed 500 Internal Server Error in 507ms (ActiveRecord: 0.0ms) + + + +SyntaxError - syntax error, unexpected tIDENTIFIER, expecting ')' +...g(:q, "Find your flavor...") id="searchBox");@output_buffer.... +... ^~: + app/views/recipes/index.html.erb:4:in `' + +Started POST "/__better_errors/685c57a7a3d1d02d/variables" for 127.0.0.1 at 2018-11-04 10:34:32 -0800 +Started GET "/" for 127.0.0.1 at 2018-11-04 10:35:59 -0800 +Processing by RecipesController#index as HTML + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (1.0ms) +Completed 500 Internal Server Error in 445ms (ActiveRecord: 0.0ms) + + + +SyntaxError - syntax error, unexpected tIDENTIFIER, expecting ')' +...ag(:q, "Find your flavor..." id="searchBox"));@output_buffer... +... ^~ +/Users/kjfitzpatrick/ada/week13/api-muncher/Api-Muncher/app/views/recipes/index.html.erb:4: syntax error, unexpected ')', expecting keyword_end +...our flavor..." id="searchBox"));@output_buffer.safe_append=' +... ^ +/Users/kjfitzpatrick/ada/week13/api-muncher/Api-Muncher/app/views/recipes/index.html.erb:25: syntax error, unexpected keyword_ensure, expecting end-of-input + ensure + ^~~~~~: + app/views/recipes/index.html.erb:4:in `' + +Started POST "/__better_errors/db7f5ab3949cc2aa/variables" for 127.0.0.1 at 2018-11-04 10:35:59 -0800 +Started GET "/" for 127.0.0.1 at 2018-11-04 10:36:33 -0800 +Processing by RecipesController#index as HTML + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.6ms) +Completed 200 OK in 2166ms (Views: 1691.5ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=&commit=Search" for 127.0.0.1 at 2018-11-04 10:36:43 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 542ms (Views: 17.2ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=&commit=Search" for 127.0.0.1 at 2018-11-04 10:36:45 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 481ms (Views: 20.7ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=beef&commit=Search" for 127.0.0.1 at 2018-11-04 10:36:52 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"beef", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (3.6ms) +Completed 200 OK in 2380ms (Views: 19.0ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=&commit=Search" for 127.0.0.1 at 2018-11-04 10:37:28 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (1.3ms) +Completed 500 Internal Server Error in 470ms (ActiveRecord: 0.0ms) + + + +SyntaxError - syntax error, unexpected tIDENTIFIER, expecting keyword_end +...ag("/search", method: "get") id="searchBox" do @output_buffe... +... ^~ +/Users/kjfitzpatrick/ada/week13/api-muncher/Api-Muncher/app/views/recipes/index.html.erb:3: syntax error, unexpected keyword_do_block, expecting keyword_end +...ethod: "get") id="searchBox" do @output_buffer.safe_append=' +... ^~ +/Users/kjfitzpatrick/ada/week13/api-muncher/Api-Muncher/app/views/recipes/index.html.erb:25: syntax error, unexpected keyword_ensure, expecting end-of-input + ensure + ^~~~~~: + app/views/recipes/index.html.erb:3:in `' + +Started POST "/__better_errors/ee207fab44a6a946/variables" for 127.0.0.1 at 2018-11-04 10:37:29 -0800 +Started GET "/search?utf8=%E2%9C%93&q=&commit=Search" for 127.0.0.1 at 2018-11-04 10:37:56 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.6ms) +Completed 200 OK in 504ms (Views: 14.2ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=&commit=Search" for 127.0.0.1 at 2018-11-04 10:38:15 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.6ms) +Completed 200 OK in 453ms (Views: 12.7ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=&commit=Search" for 127.0.0.1 at 2018-11-04 10:38:51 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.6ms) +Completed 200 OK in 451ms (Views: 14.3ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=&commit=Search" for 127.0.0.1 at 2018-11-04 10:40:29 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.6ms) +Completed 200 OK in 556ms (Views: 14.6ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=&commit=Search" for 127.0.0.1 at 2018-11-04 10:40:37 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.7ms) +Completed 200 OK in 505ms (Views: 13.8ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=&commit=Search" for 127.0.0.1 at 2018-11-04 10:41:53 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.7ms) +Completed 200 OK in 443ms (Views: 13.9ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=&commit=Search" for 127.0.0.1 at 2018-11-04 10:45:04 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 459ms (Views: 17.2ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=beef&commit=Search" for 127.0.0.1 at 2018-11-04 10:45:09 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"beef", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 2777ms (Views: 13.9ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=beef&commit=Search" for 127.0.0.1 at 2018-11-04 10:51:46 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"beef", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (2.5ms) +Completed 200 OK in 3973ms (Views: 1622.1ms | ActiveRecord: 0.0ms) + + +Started GET "/images/Death_to_Stock_Fall_Dinner_5.jpg" for 127.0.0.1 at 2018-11-04 10:51:50 -0800 + +ActionController::RoutingError (No route matches [GET] "/images/Death_to_Stock_Fall_Dinner_5.jpg"): + +actionpack (5.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:65:in `call' +web-console (3.7.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.7.0) lib/web_console/middleware.rb:30:in `block in call' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `catch' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call' +railties (5.2.1) lib/rails/rack/logger.rb:38:in `call_app' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `block in call' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `block in tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:28:in `tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `tagged' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/remote_ip.rb:81:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/request_id.rb:27:in `call' +rack (2.0.5) lib/rack/method_override.rb:22:in `call' +rack (2.0.5) lib/rack/runtime.rb:22:in `call' +activesupport (5.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/executor.rb:14:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/static.rb:127:in `call' +rack (2.0.5) lib/rack/sendfile.rb:111:in `call' +railties (5.2.1) lib/rails/engine.rb:524:in `call' +puma (3.12.0) lib/puma/configuration.rb:225:in `call' +puma (3.12.0) lib/puma/server.rb:658:in `handle_request' +puma (3.12.0) lib/puma/server.rb:472:in `process_client' +puma (3.12.0) lib/puma/server.rb:332:in `block in run' +puma (3.12.0) lib/puma/thread_pool.rb:133:in `block in spawn_thread' +Started GET "/search?utf8=%E2%9C%93&q=beef&commit=Search" for 127.0.0.1 at 2018-11-04 10:52:36 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"beef", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 3576ms (Views: 1758.7ms | ActiveRecord: 0.0ms) + + +Started GET "/images/Death_to_Stock_Fall_Dinner_5.jpg" for 127.0.0.1 at 2018-11-04 10:52:39 -0800 + +ActionController::RoutingError (No route matches [GET] "/images/Death_to_Stock_Fall_Dinner_5.jpg"): + +actionpack (5.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:65:in `call' +web-console (3.7.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.7.0) lib/web_console/middleware.rb:30:in `block in call' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `catch' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call' +railties (5.2.1) lib/rails/rack/logger.rb:38:in `call_app' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `block in call' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `block in tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:28:in `tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `tagged' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/remote_ip.rb:81:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/request_id.rb:27:in `call' +rack (2.0.5) lib/rack/method_override.rb:22:in `call' +rack (2.0.5) lib/rack/runtime.rb:22:in `call' +activesupport (5.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/executor.rb:14:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/static.rb:127:in `call' +rack (2.0.5) lib/rack/sendfile.rb:111:in `call' +railties (5.2.1) lib/rails/engine.rb:524:in `call' +puma (3.12.0) lib/puma/configuration.rb:225:in `call' +puma (3.12.0) lib/puma/server.rb:658:in `handle_request' +puma (3.12.0) lib/puma/server.rb:472:in `process_client' +puma (3.12.0) lib/puma/server.rb:332:in `block in run' +puma (3.12.0) lib/puma/thread_pool.rb:133:in `block in spawn_thread' +Started GET "/search?utf8=%E2%9C%93&q=beef&commit=Search" for 127.0.0.1 at 2018-11-04 10:53:01 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"beef", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (3.2ms) +Completed 200 OK in 3819ms (Views: 1672.6ms | ActiveRecord: 0.0ms) + + +Started GET "/images/Death_to_Stock_Fall_Dinner_5.jpg" for 127.0.0.1 at 2018-11-04 10:53:05 -0800 + +ActionController::RoutingError (No route matches [GET] "/images/Death_to_Stock_Fall_Dinner_5.jpg"): + +actionpack (5.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:65:in `call' +web-console (3.7.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.7.0) lib/web_console/middleware.rb:30:in `block in call' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `catch' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call' +railties (5.2.1) lib/rails/rack/logger.rb:38:in `call_app' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `block in call' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `block in tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:28:in `tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `tagged' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/remote_ip.rb:81:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/request_id.rb:27:in `call' +rack (2.0.5) lib/rack/method_override.rb:22:in `call' +rack (2.0.5) lib/rack/runtime.rb:22:in `call' +activesupport (5.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/executor.rb:14:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/static.rb:127:in `call' +rack (2.0.5) lib/rack/sendfile.rb:111:in `call' +railties (5.2.1) lib/rails/engine.rb:524:in `call' +puma (3.12.0) lib/puma/configuration.rb:225:in `call' +puma (3.12.0) lib/puma/server.rb:658:in `handle_request' +puma (3.12.0) lib/puma/server.rb:472:in `process_client' +puma (3.12.0) lib/puma/server.rb:332:in `block in run' +puma (3.12.0) lib/puma/thread_pool.rb:133:in `block in spawn_thread' +Started GET "/search?utf8=%E2%9C%93&q=beef&commit=Search" for 127.0.0.1 at 2018-11-04 10:53:22 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"beef", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (3.8ms) +Completed 200 OK in 3612ms (Views: 1688.3ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=beef&commit=Search" for 127.0.0.1 at 2018-11-04 10:58:55 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"beef", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (4.0ms) +Completed 200 OK in 3544ms (Views: 1565.9ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=beef&commit=Search" for 127.0.0.1 at 2018-11-04 11:04:24 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"beef", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (3.5ms) +Completed 200 OK in 3680ms (Views: 1684.3ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=beef&commit=Search" for 127.0.0.1 at 2018-11-04 11:05:01 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"beef", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (4.2ms) +Completed 200 OK in 5120ms (Views: 1681.6ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=beef&commit=Search" for 127.0.0.1 at 2018-11-04 11:05:29 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"beef", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (3.1ms) +Completed 200 OK in 3739ms (Views: 1687.4ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=beef&commit=Search" for 127.0.0.1 at 2018-11-04 11:05:52 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"beef", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (4.6ms) +Completed 200 OK in 3750ms (Views: 1747.6ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=beef&commit=Search" for 127.0.0.1 at 2018-11-04 11:06:16 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"beef", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (3.3ms) +Completed 200 OK in 3676ms (Views: 1715.7ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=beef&commit=Search" for 127.0.0.1 at 2018-11-04 11:06:38 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"beef", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (4.1ms) +Completed 200 OK in 3495ms (Views: 1703.2ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=beef&commit=Search" for 127.0.0.1 at 2018-11-04 11:06:55 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"beef", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (3.8ms) +Completed 200 OK in 3581ms (Views: 1685.8ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=beef&commit=Search" for 127.0.0.1 at 2018-11-04 11:07:26 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"beef", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (4.0ms) +Completed 200 OK in 3675ms (Views: 1770.0ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=beef&commit=Search" for 127.0.0.1 at 2018-11-04 11:07:46 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"beef", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (3.1ms) +Completed 200 OK in 3501ms (Views: 1737.7ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=beef&commit=Search" for 127.0.0.1 at 2018-11-04 11:10:58 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"beef", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (3.3ms) +Completed 200 OK in 2045ms (Views: 16.4ms | ActiveRecord: 0.0ms) + + +Started GET "/recipe.http:%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_c17944a7af0decc2f627246b0bb24d8a" for 127.0.0.1 at 2018-11-04 11:12:12 -0800 + +ActionController::RoutingError (No route matches [GET] "/recipe.http:%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_c17944a7af0decc2f627246b0bb24d8a"): + +actionpack (5.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:65:in `call' +web-console (3.7.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.7.0) lib/web_console/middleware.rb:30:in `block in call' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `catch' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call' +railties (5.2.1) lib/rails/rack/logger.rb:38:in `call_app' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `block in call' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `block in tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:28:in `tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `tagged' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/remote_ip.rb:81:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/request_id.rb:27:in `call' +rack (2.0.5) lib/rack/method_override.rb:22:in `call' +rack (2.0.5) lib/rack/runtime.rb:22:in `call' +activesupport (5.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/executor.rb:14:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/static.rb:127:in `call' +rack (2.0.5) lib/rack/sendfile.rb:111:in `call' +railties (5.2.1) lib/rails/engine.rb:524:in `call' +puma (3.12.0) lib/puma/configuration.rb:225:in `call' +puma (3.12.0) lib/puma/server.rb:658:in `handle_request' +puma (3.12.0) lib/puma/server.rb:472:in `process_client' +puma (3.12.0) lib/puma/server.rb:332:in `block in run' +puma (3.12.0) lib/puma/thread_pool.rb:133:in `block in spawn_thread' +Started GET "/recipe.http:%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_710678b0fae9d4fa004975ef91aae1a3" for 127.0.0.1 at 2018-11-04 11:12:23 -0800 + +ActionController::RoutingError (No route matches [GET] "/recipe.http:%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_710678b0fae9d4fa004975ef91aae1a3"): + +actionpack (5.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:65:in `call' +web-console (3.7.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.7.0) lib/web_console/middleware.rb:30:in `block in call' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `catch' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call' +railties (5.2.1) lib/rails/rack/logger.rb:38:in `call_app' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `block in call' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `block in tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:28:in `tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `tagged' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/remote_ip.rb:81:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/request_id.rb:27:in `call' +rack (2.0.5) lib/rack/method_override.rb:22:in `call' +rack (2.0.5) lib/rack/runtime.rb:22:in `call' +activesupport (5.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/executor.rb:14:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/static.rb:127:in `call' +rack (2.0.5) lib/rack/sendfile.rb:111:in `call' +railties (5.2.1) lib/rails/engine.rb:524:in `call' +puma (3.12.0) lib/puma/configuration.rb:225:in `call' +puma (3.12.0) lib/puma/server.rb:658:in `handle_request' +puma (3.12.0) lib/puma/server.rb:472:in `process_client' +puma (3.12.0) lib/puma/server.rb:332:in `block in run' +puma (3.12.0) lib/puma/thread_pool.rb:133:in `block in spawn_thread' +Started GET "/search?utf8=%E2%9C%93&q=beef&commit=Search" for 127.0.0.1 at 2018-11-04 11:13:40 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"beef", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (3.2ms) +Completed 200 OK in 1959ms (Views: 15.7ms | ActiveRecord: 0.0ms) + + +Started GET "/recipe.http:%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_3921adf30bb0c9736b9ac30f447f8a63" for 127.0.0.1 at 2018-11-04 11:13:49 -0800 + +ActionController::RoutingError (No route matches [GET] "/recipe.http:%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_3921adf30bb0c9736b9ac30f447f8a63"): + +actionpack (5.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:65:in `call' +web-console (3.7.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.7.0) lib/web_console/middleware.rb:30:in `block in call' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `catch' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call' +railties (5.2.1) lib/rails/rack/logger.rb:38:in `call_app' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `block in call' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `block in tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:28:in `tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `tagged' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/remote_ip.rb:81:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/request_id.rb:27:in `call' +rack (2.0.5) lib/rack/method_override.rb:22:in `call' +rack (2.0.5) lib/rack/runtime.rb:22:in `call' +activesupport (5.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/executor.rb:14:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/static.rb:127:in `call' +rack (2.0.5) lib/rack/sendfile.rb:111:in `call' +railties (5.2.1) lib/rails/engine.rb:524:in `call' +puma (3.12.0) lib/puma/configuration.rb:225:in `call' +puma (3.12.0) lib/puma/server.rb:658:in `handle_request' +puma (3.12.0) lib/puma/server.rb:472:in `process_client' +puma (3.12.0) lib/puma/server.rb:332:in `block in run' +puma (3.12.0) lib/puma/thread_pool.rb:133:in `block in spawn_thread' +Started GET "/search?utf8=%E2%9C%93&q=&commit=Search" for 127.0.0.1 at 2018-11-04 11:14:11 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.6ms) +Completed 200 OK in 450ms (Views: 13.1ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=beef&commit=Search" for 127.0.0.1 at 2018-11-04 11:14:25 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"beef", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (3.2ms) +Completed 200 OK in 1873ms (Views: 16.6ms | ActiveRecord: 0.0ms) + + +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_f8ace76fbcf19edb8e7959d3cf38069d" for 127.0.0.1 at 2018-11-04 11:14:33 -0800 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_f8ace76fbcf19edb8e7959d3cf38069d"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (0.4ms) +Completed 200 OK in 545ms (Views: 14.0ms | ActiveRecord: 0.0ms) + + +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_82f97457fc8bb9508b040bd55e26d199" for 127.0.0.1 at 2018-11-04 11:14:48 -0800 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_82f97457fc8bb9508b040bd55e26d199"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (0.4ms) +Completed 200 OK in 458ms (Views: 12.6ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=beef&commit=Search" for 127.0.0.1 at 2018-11-04 11:16:24 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"beef", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (2.8ms) +Completed 200 OK in 3506ms (Views: 1663.2ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=beef&commit=Search" for 127.0.0.1 at 2018-11-04 11:16:33 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"beef", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (4.2ms) +Completed 200 OK in 1997ms (Views: 30.9ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=&commit=Search" for 127.0.0.1 at 2018-11-04 11:16:45 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (1.1ms) +Completed 200 OK in 519ms (Views: 29.8ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=&commit=Search" for 127.0.0.1 at 2018-11-04 11:17:13 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (1.3ms) +Completed 200 OK in 479ms (Views: 26.4ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=&commit=Search" for 127.0.0.1 at 2018-11-04 11:33:33 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.6ms) +Completed 200 OK in 1942ms (Views: 1404.7ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=&commit=Search" for 127.0.0.1 at 2018-11-04 11:39:45 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 1055ms (Views: 16.2ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=&commit=Search" for 127.0.0.1 at 2018-11-04 11:39:47 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"", "commit"=>"Search"} +Started GET "/search?utf8=%E2%9C%93&q=&commit=Search" for 127.0.0.1 at 2018-11-04 11:39:47 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.6ms) +Completed 200 OK in 885ms (Views: 15.3ms | ActiveRecord: 0.0ms) + + + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.2ms) +Completed 200 OK in 720ms (Views: 15.1ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=&commit=Search" for 127.0.0.1 at 2018-11-04 11:42:27 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.7ms) +Completed 200 OK in 603ms (Views: 14.1ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=&commit=Search" for 127.0.0.1 at 2018-11-04 11:42:36 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 532ms (Views: 17.1ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=beef&commit=Search" for 127.0.0.1 at 2018-11-04 11:42:42 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"beef", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (3.1ms) +Completed 200 OK in 1945ms (Views: 15.5ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=&commit=Search" for 127.0.0.1 at 2018-11-04 12:35:15 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (8.3ms) +Completed 500 Internal Server Error in 674ms (ActiveRecord: 0.0ms) + + + +Sass::SyntaxError - Invalid CSS after "...d-template-rows": expected ";", was ": 100px 1fr 80px;": + app/views/layouts/application.html.erb:8:in `_app_views_layouts_application_html_erb__4128253184315918423_70149096319160' + +Started POST "/__better_errors/de9fb3ef3f451f01/variables" for 127.0.0.1 at 2018-11-04 12:35:16 -0800 +Started GET "/search?utf8=%E2%9C%93&q=&commit=Search" for 127.0.0.1 at 2018-11-04 12:35:50 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.8ms) +Completed 500 Internal Server Error in 493ms (ActiveRecord: 0.0ms) + + + +Sass::SyntaxError - Invalid CSS after "...d-template-rows": expected ";", was ": ;": + app/views/layouts/application.html.erb:8:in `_app_views_layouts_application_html_erb__4128253184315918423_70149203954820' + +Started POST "/__better_errors/8158a7c8af212ab7/variables" for 127.0.0.1 at 2018-11-04 12:35:51 -0800 +Started GET "/search?utf8=%E2%9C%93&q=&commit=Search" for 127.0.0.1 at 2018-11-04 12:35:59 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.7ms) +Completed 200 OK in 2429ms (Views: 1759.6ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=&commit=Search" for 127.0.0.1 at 2018-11-04 12:37:53 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.8ms) +Completed 500 Internal Server Error in 477ms (ActiveRecord: 0.0ms) + + + +Sass::SyntaxError - Invalid CSS after "...emplate-columns": expected ";", was ": repeat(auto-f...": + app/views/layouts/application.html.erb:8:in `_app_views_layouts_application_html_erb__4128253184315918423_70149203565220' + +Started POST "/__better_errors/50c168527116b888/variables" for 127.0.0.1 at 2018-11-04 12:37:53 -0800 +Started GET "/search?utf8=%E2%9C%93&q=&commit=Search" for 127.0.0.1 at 2018-11-04 12:38:15 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (1.1ms) +Completed 500 Internal Server Error in 468ms (ActiveRecord: 0.0ms) + + + +Sass::SyntaxError - Invalid CSS after "...emplate-columns": expected ";", was ": repeat(auto-f...": + app/views/layouts/application.html.erb:8:in `_app_views_layouts_application_html_erb__4128253184315918423_70148953243580' + +Started POST "/__better_errors/1fdadd43b2f3d779/variables" for 127.0.0.1 at 2018-11-04 12:38:16 -0800 +Started GET "/search?utf8=%E2%9C%93&q=&commit=Search" for 127.0.0.1 at 2018-11-04 12:38:38 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.7ms) +Completed 500 Internal Server Error in 440ms (ActiveRecord: 0.0ms) + + + +Sass::SyntaxError - Invalid CSS after "...emplate-columns": expected ";", was ": repeat(auto-f...": + app/views/layouts/application.html.erb:8:in `_app_views_layouts_application_html_erb__4128253184315918423_70148950522840' + +Started POST "/__better_errors/b81ba9a02d804282/variables" for 127.0.0.1 at 2018-11-04 12:38:39 -0800 +Started GET "/search?utf8=%E2%9C%93&q=&commit=Search" for 127.0.0.1 at 2018-11-04 12:38:46 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.7ms) +Completed 200 OK in 548ms (Views: 6.1ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=&commit=Search" for 127.0.0.1 at 2018-11-04 12:39:08 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 464ms (Views: 7.0ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=&commit=Search" for 127.0.0.1 at 2018-11-04 12:39:59 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.6ms) +Completed 200 OK in 445ms (Views: 6.5ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=&commit=Search" for 127.0.0.1 at 2018-11-04 12:40:09 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.6ms) +Completed 200 OK in 1843ms (Views: 1385.0ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=&commit=Search" for 127.0.0.1 at 2018-11-04 12:40:21 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 484ms (Views: 15.7ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=&commit=Search" for 127.0.0.1 at 2018-11-04 12:40:24 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.7ms) +Completed 200 OK in 476ms (Views: 15.6ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=&commit=Search" for 127.0.0.1 at 2018-11-04 12:42:09 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.7ms) +Completed 200 OK in 2612ms (Views: 1525.9ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=&commit=Search" for 127.0.0.1 at 2018-11-04 12:42:16 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 473ms (Views: 17.1ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=&commit=Search" for 127.0.0.1 at 2018-11-04 12:42:45 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.7ms) +Completed 200 OK in 1852ms (Views: 1407.2ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=&commit=Search" for 127.0.0.1 at 2018-11-04 12:45:01 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 2145ms (Views: 1530.5ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=&commit=Search" for 127.0.0.1 at 2018-11-04 12:45:05 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 644ms (Views: 15.5ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=&commit=Search" for 127.0.0.1 at 2018-11-04 12:45:21 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 1926ms (Views: 1467.7ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=&commit=Search" for 127.0.0.1 at 2018-11-04 12:51:19 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (1.1ms) +Completed 200 OK in 2662ms (Views: 1530.7ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=beef&commit=Search" for 127.0.0.1 at 2018-11-04 12:51:26 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"beef", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (9.9ms) +Completed 200 OK in 2367ms (Views: 22.2ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=beef&commit=Search" for 127.0.0.1 at 2018-11-04 12:52:43 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"beef", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (2.8ms) +Completed 200 OK in 1937ms (Views: 14.0ms | ActiveRecord: 0.0ms) + + +Started GET "/?commit=Search&page=2&q=beef&utf8=%E2%9C%93" for 127.0.0.1 at 2018-11-04 12:52:57 -0800 +Processing by RecipesController#index as HTML + Parameters: {"commit"=>"Search", "page"=>"2", "q"=>"beef", "utf8"=>"✓"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 1834ms (Views: 14.0ms | ActiveRecord: 0.0ms) + + +Started GET "/?commit=Search&page=2&q=beef&utf8=%E2%9C%93" for 127.0.0.1 at 2018-11-04 12:58:59 -0800 +Processing by RecipesController#index as HTML + Parameters: {"commit"=>"Search", "page"=>"2", "q"=>"beef", "utf8"=>"✓"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (4.8ms) +Completed 200 OK in 2224ms (Views: 16.3ms | ActiveRecord: 0.0ms) + + +Started GET "/?commit=Search&page=3&q=beef&utf8=%E2%9C%93" for 127.0.0.1 at 2018-11-04 12:59:28 -0800 +Processing by RecipesController#index as HTML + Parameters: {"commit"=>"Search", "page"=>"3", "q"=>"beef", "utf8"=>"✓"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (4.6ms) +Completed 200 OK in 2128ms (Views: 16.3ms | ActiveRecord: 0.0ms) + + +Started GET "/?commit=Search&page=3&q=beef&utf8=%E2%9C%93" for 127.0.0.1 at 2018-11-04 13:00:02 -0800 +Processing by RecipesController#index as HTML + Parameters: {"commit"=>"Search", "page"=>"3", "q"=>"beef", "utf8"=>"✓"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (2.7ms) +Completed 200 OK in 3245ms (Views: 14.1ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=chocolate&commit=Search" for 127.0.0.1 at 2018-11-04 13:05:20 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"chocolate", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (2.7ms) +Completed 200 OK in 1892ms (Views: 23.0ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=apple%27s.&commit=Search" for 127.0.0.1 at 2018-11-04 13:07:52 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"apple's.", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 1933ms (Views: 14.1ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=apple%27s.&commit=Search" for 127.0.0.1 at 2018-11-04 13:07:54 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"apple's.", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 1944ms (Views: 13.9ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=banana&commit=Search" for 127.0.0.1 at 2018-11-04 13:08:32 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"banana", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (2.8ms) +Completed 200 OK in 1524ms (Views: 15.7ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=aprecots&commit=Search" for 127.0.0.1 at 2018-11-04 13:09:19 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"aprecots", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.6ms) +Completed 200 OK in 507ms (Views: 16.9ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=aprecots&commit=Search" for 127.0.0.1 at 2018-11-04 13:09:30 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"aprecots", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.7ms) +Completed 200 OK in 538ms (Views: 15.5ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=sushi&commit=Search" for 127.0.0.1 at 2018-11-04 13:11:49 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"sushi", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 1632ms (Views: 13.9ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=peanut+soup&commit=Search" for 127.0.0.1 at 2018-11-04 13:12:51 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"peanut soup", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 2246ms (Views: 13.7ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=peanut&commit=Search" for 127.0.0.1 at 2018-11-04 13:13:24 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"peanut", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (2.7ms) +Completed 200 OK in 1741ms (Views: 14.5ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=peanut&commit=Search" for 127.0.0.1 at 2018-11-04 13:41:10 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"peanut", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (12.2ms) +Completed 200 OK in 2122ms (Views: 27.5ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=peanut&commit=Search" for 127.0.0.1 at 2018-11-04 13:41:18 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"peanut", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 1712ms (Views: 13.8ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=eggs&commit=Search" for 127.0.0.1 at 2018-11-04 13:41:33 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"eggs", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 2940ms (Views: 13.6ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=eggs&commit=Search" for 127.0.0.1 at 2018-11-04 13:42:10 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"eggs", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 3666ms (Views: 13.7ms | ActiveRecord: 0.0ms) + + +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_79fb80a8033dc74d016f149f1d08a5a3" for 127.0.0.1 at 2018-11-04 13:42:17 -0800 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_79fb80a8033dc74d016f149f1d08a5a3"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (0.4ms) +Completed 200 OK in 499ms (Views: 15.0ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=eggs&commit=Search" for 127.0.0.1 at 2018-11-04 13:42:24 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"eggs", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 2863ms (Views: 13.9ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=milk&commit=Search" for 127.0.0.1 at 2018-11-04 13:42:36 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"milk", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (2.7ms) +Completed 200 OK in 2346ms (Views: 14.2ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 127.0.0.1 at 2018-11-04 13:43:02 -0800 +Processing by RecipesController#index as HTML + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.6ms) +Completed 200 OK in 751ms (Views: 14.1ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=eggs&commit=Search" for 127.0.0.1 at 2018-11-04 14:40:04 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"eggs", "commit"=>"Search"} +Completed 500 Internal Server Error in 20ms (ActiveRecord: 0.0ms) + + + +SocketError - getaddrinfo: nodename nor servname provided, or not known: + lib/muncher_api_wrapper.rb:12:in `get_recipes' + app/controllers/recipes_controller.rb:7:in `index' + +Started POST "/__better_errors/5a48037edd3ca2a2/variables" for 127.0.0.1 at 2018-11-04 14:40:04 -0800 +Started GET "/search?utf8=%E2%9C%93&q=eggs&commit=Search" for 127.0.0.1 at 2018-11-04 14:42:08 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"eggs", "commit"=>"Search"} +Completed 500 Internal Server Error in 14ms (ActiveRecord: 0.0ms) + + + +SocketError - getaddrinfo: nodename nor servname provided, or not known: + lib/muncher_api_wrapper.rb:12:in `get_recipes' + app/controllers/recipes_controller.rb:7:in `index' + +Started POST "/__better_errors/4b126b10df04bf7c/variables" for 127.0.0.1 at 2018-11-04 14:42:08 -0800 +Started GET "/search?utf8=%E2%9C%93&q=eggs&commit=Search" for 127.0.0.1 at 2018-11-04 14:42:10 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"eggs", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (3.3ms) +Completed 200 OK in 3589ms (Views: 39.6ms | ActiveRecord: 0.0ms) + + +Started GET "/?commit=Search&page=2&q=eggs&utf8=%E2%9C%93" for 127.0.0.1 at 2018-11-04 14:42:19 -0800 +Processing by RecipesController#index as HTML + Parameters: {"commit"=>"Search", "page"=>"2", "q"=>"eggs", "utf8"=>"✓"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 3142ms (Views: 15.8ms | ActiveRecord: 0.0ms) + + +Started GET "/?commit=Search&page=3&q=eggs&utf8=%E2%9C%93" for 127.0.0.1 at 2018-11-04 15:05:38 -0800 +Processing by RecipesController#index as HTML + Parameters: {"commit"=>"Search", "page"=>"3", "q"=>"eggs", "utf8"=>"✓"} +Started GET "/?commit=Search&page=3&q=eggs&utf8=%E2%9C%93" for 127.0.0.1 at 2018-11-04 15:05:40 -0800 +Processing by RecipesController#index as HTML + Parameters: {"commit"=>"Search", "page"=>"3", "q"=>"eggs", "utf8"=>"✓"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 2963ms (Views: 13.3ms | ActiveRecord: 0.0ms) + + +Started GET "/?commit=Search&page=3&q=eggs&utf8=%E2%9C%93" for 127.0.0.1 at 2018-11-04 15:05:43 -0800 +Processing by RecipesController#index as HTML + Parameters: {"commit"=>"Search", "page"=>"3", "q"=>"eggs", "utf8"=>"✓"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (3.1ms) +Completed 200 OK in 3427ms (Views: 15.7ms | ActiveRecord: 0.0ms) + + +Started GET "/?commit=Search&page=3&q=eggs&utf8=%E2%9C%93" for 127.0.0.1 at 2018-11-04 15:05:46 -0800 +Processing by RecipesController#index as HTML + Parameters: {"commit"=>"Search", "page"=>"3", "q"=>"eggs", "utf8"=>"✓"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (2.7ms) +Completed 200 OK in 2991ms (Views: 13.9ms | ActiveRecord: 0.0ms) + + + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (2.3ms) +Completed 200 OK in 3038ms (Views: 13.2ms | ActiveRecord: 0.0ms) + + +Started GET "/?commit=Search&page=5&q=eggs&utf8=%E2%9C%93" for 127.0.0.1 at 2018-11-04 15:05:55 -0800 +Processing by RecipesController#index as HTML + Parameters: {"commit"=>"Search", "page"=>"5", "q"=>"eggs", "utf8"=>"✓"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (2.7ms) +Completed 200 OK in 2890ms (Views: 15.4ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 127.0.0.1 at 2018-11-04 17:02:54 -0800 +Processing by RecipesController#index as HTML + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.7ms) +Completed 200 OK in 687ms (Views: 22.9ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=beef&commit=Search" for 127.0.0.1 at 2018-11-04 17:04:29 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"beef", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (2.8ms) +Completed 200 OK in 2192ms (Views: 14.5ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=beef&commit=Search" for 127.0.0.1 at 2018-11-04 17:09:45 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"beef", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (2.8ms) +Completed 200 OK in 3688ms (Views: 1646.6ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=beef&commit=Search" for 127.0.0.1 at 2018-11-04 17:11:06 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"beef", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (3.4ms) +Completed 200 OK in 2125ms (Views: 16.3ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=beef&commit=Search" for 127.0.0.1 at 2018-11-04 17:11:55 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"beef", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (3.0ms) +Completed 200 OK in 1849ms (Views: 17.7ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 127.0.0.1 at 2018-11-04 17:39:25 -0800 + +AbstractController::ActionNotFound - The action 'home' could not be found for RecipesController: + +Started POST "/__better_errors/c7417d198513aa0d/variables" for 127.0.0.1 at 2018-11-04 17:39:26 -0800 +Started GET "/" for 127.0.0.1 at 2018-11-04 17:39:53 -0800 +Processing by RecipesController#home as HTML +Completed 406 Not Acceptable in 94ms (ActiveRecord: 0.0ms) + + + +ActionController::UnknownFormat - RecipesController#home is missing a template for this request format and variant. + +request.formats: ["text/html"] +request.variant: [] + +NOTE! For XHR/Ajax or API requests, this action would normally respond with 204 No Content: an empty white screen. Since you're loading it in a web browser, we assume that you expected to actually render a template, not nothing, so we're showing an error to be extra-clear. If you expect 204 No Content, carry on. That's what you'll get from an XHR or API request. Give it a shot.: + +Started POST "/__better_errors/a9daced155c9a202/variables" for 127.0.0.1 at 2018-11-04 17:39:53 -0800 +Started POST "/__better_errors/a9daced155c9a202/variables" for 127.0.0.1 at 2018-11-04 17:40:24 -0800 +Started POST "/__better_errors/a9daced155c9a202/variables" for 127.0.0.1 at 2018-11-04 17:40:27 -0800 +Started POST "/__better_errors/a9daced155c9a202/variables" for 127.0.0.1 at 2018-11-04 17:40:29 -0800 +Started POST "/__better_errors/a9daced155c9a202/variables" for 127.0.0.1 at 2018-11-04 17:40:34 -0800 +Started POST "/__better_errors/a9daced155c9a202/variables" for 127.0.0.1 at 2018-11-04 17:40:36 -0800 +Started POST "/__better_errors/a9daced155c9a202/variables" for 127.0.0.1 at 2018-11-04 17:40:37 -0800 +Started POST "/__better_errors/a9daced155c9a202/variables" for 127.0.0.1 at 2018-11-04 17:40:39 -0800 +Started GET "/" for 127.0.0.1 at 2018-11-04 17:41:57 -0800 +Processing by RecipesController#home as HTML +Completed 406 Not Acceptable in 90ms (ActiveRecord: 0.0ms) + + + +ActionController::UnknownFormat - RecipesController#home is missing a template for this request format and variant. + +request.formats: ["text/html"] +request.variant: [] + +NOTE! For XHR/Ajax or API requests, this action would normally respond with 204 No Content: an empty white screen. Since you're loading it in a web browser, we assume that you expected to actually render a template, not nothing, so we're showing an error to be extra-clear. If you expect 204 No Content, carry on. That's what you'll get from an XHR or API request. Give it a shot.: + +Started POST "/__better_errors/5b145e5d51d5fda6/variables" for 127.0.0.1 at 2018-11-04 17:41:57 -0800 +Started GET "/" for 127.0.0.1 at 2018-11-04 17:41:58 -0800 +Processing by RecipesController#home as HTML +Completed 406 Not Acceptable in 88ms (ActiveRecord: 0.0ms) + + + +ActionController::UnknownFormat - RecipesController#home is missing a template for this request format and variant. + +request.formats: ["text/html"] +request.variant: [] + +NOTE! For XHR/Ajax or API requests, this action would normally respond with 204 No Content: an empty white screen. Since you're loading it in a web browser, we assume that you expected to actually render a template, not nothing, so we're showing an error to be extra-clear. If you expect 204 No Content, carry on. That's what you'll get from an XHR or API request. Give it a shot.: + +Started POST "/__better_errors/6472d7052d262454/variables" for 127.0.0.1 at 2018-11-04 17:41:58 -0800 +Started GET "/" for 127.0.0.1 at 2018-11-04 17:41:59 -0800 +Processing by RecipesController#home as HTML +Completed 406 Not Acceptable in 88ms (ActiveRecord: 0.0ms) + + + +ActionController::UnknownFormat - RecipesController#home is missing a template for this request format and variant. + +request.formats: ["text/html"] +request.variant: [] + +NOTE! For XHR/Ajax or API requests, this action would normally respond with 204 No Content: an empty white screen. Since you're loading it in a web browser, we assume that you expected to actually render a template, not nothing, so we're showing an error to be extra-clear. If you expect 204 No Content, carry on. That's what you'll get from an XHR or API request. Give it a shot.: + +Started POST "/__better_errors/e204285748de260a/variables" for 127.0.0.1 at 2018-11-04 17:41:59 -0800 +Started GET "/" for 127.0.0.1 at 2018-11-04 17:42:50 -0800 +Processing by RecipesController#home as HTML +Completed 406 Not Acceptable in 88ms (ActiveRecord: 0.0ms) + + + +ActionController::UnknownFormat - RecipesController#home is missing a template for this request format and variant. + +request.formats: ["text/html"] +request.variant: [] + +NOTE! For XHR/Ajax or API requests, this action would normally respond with 204 No Content: an empty white screen. Since you're loading it in a web browser, we assume that you expected to actually render a template, not nothing, so we're showing an error to be extra-clear. If you expect 204 No Content, carry on. That's what you'll get from an XHR or API request. Give it a shot.: + +Started POST "/__better_errors/aa852e1827f30330/variables" for 127.0.0.1 at 2018-11-04 17:42:50 -0800 +Started POST "/__better_errors/aa852e1827f30330/variables" for 127.0.0.1 at 2018-11-04 17:42:53 -0800 +Started POST "/__better_errors/aa852e1827f30330/variables" for 127.0.0.1 at 2018-11-04 17:42:54 -0800 +Started GET "/" for 127.0.0.1 at 2018-11-04 17:43:21 -0800 +Processing by RecipesController#home as HTML +Completed 406 Not Acceptable in 91ms (ActiveRecord: 0.0ms) + + + +ActionController::UnknownFormat - RecipesController#home is missing a template for this request format and variant. + +request.formats: ["text/html"] +request.variant: [] + +NOTE! For XHR/Ajax or API requests, this action would normally respond with 204 No Content: an empty white screen. Since you're loading it in a web browser, we assume that you expected to actually render a template, not nothing, so we're showing an error to be extra-clear. If you expect 204 No Content, carry on. That's what you'll get from an XHR or API request. Give it a shot.: + +Started POST "/__better_errors/076e1a1327201306/variables" for 127.0.0.1 at 2018-11-04 17:43:21 -0800 +Started GET "/" for 127.0.0.1 at 2018-11-04 17:43:22 -0800 +Processing by RecipesController#home as HTML +Completed 406 Not Acceptable in 90ms (ActiveRecord: 0.0ms) + + + +ActionController::UnknownFormat - RecipesController#home is missing a template for this request format and variant. + +request.formats: ["text/html"] +request.variant: [] + +NOTE! For XHR/Ajax or API requests, this action would normally respond with 204 No Content: an empty white screen. Since you're loading it in a web browser, we assume that you expected to actually render a template, not nothing, so we're showing an error to be extra-clear. If you expect 204 No Content, carry on. That's what you'll get from an XHR or API request. Give it a shot.: + +Started POST "/__better_errors/f1cdb39d10037536/variables" for 127.0.0.1 at 2018-11-04 17:43:22 -0800 +Started GET "/" for 127.0.0.1 at 2018-11-04 17:43:56 -0800 + +AbstractController::ActionNotFound - The action 'homepage' could not be found for RecipesController: + +Started POST "/__better_errors/a3447051eb62baf8/variables" for 127.0.0.1 at 2018-11-04 17:43:56 -0800 +Started GET "/" for 127.0.0.1 at 2018-11-04 17:43:57 -0800 + +AbstractController::ActionNotFound - The action 'homepage' could not be found for RecipesController: + +Started POST "/__better_errors/b891a11874c9762d/variables" for 127.0.0.1 at 2018-11-04 17:43:57 -0800 +Started GET "/" for 127.0.0.1 at 2018-11-04 17:44:49 -0800 + +AbstractController::ActionNotFound - The action 'home' could not be found for HomepageController: + +Started POST "/__better_errors/0746bec91ca5f1a8/variables" for 127.0.0.1 at 2018-11-04 17:44:49 -0800 +Started GET "/" for 127.0.0.1 at 2018-11-04 17:44:50 -0800 + +AbstractController::ActionNotFound - The action 'home' could not be found for HomepageController: + +Started POST "/__better_errors/5141f0d8e8bce994/variables" for 127.0.0.1 at 2018-11-04 17:44:50 -0800 +Started GET "/" for 127.0.0.1 at 2018-11-04 17:45:13 -0800 +Processing by HomepageController#home as HTML +Completed 406 Not Acceptable in 93ms (ActiveRecord: 0.0ms) + + + +ActionController::UnknownFormat - HomepageController#home is missing a template for this request format and variant. + +request.formats: ["text/html"] +request.variant: [] + +NOTE! For XHR/Ajax or API requests, this action would normally respond with 204 No Content: an empty white screen. Since you're loading it in a web browser, we assume that you expected to actually render a template, not nothing, so we're showing an error to be extra-clear. If you expect 204 No Content, carry on. That's what you'll get from an XHR or API request. Give it a shot.: + +Started POST "/__better_errors/2b2af774fc8a688c/variables" for 127.0.0.1 at 2018-11-04 17:45:13 -0800 +Started GET "/" for 127.0.0.1 at 2018-11-04 17:45:38 -0800 +Processing by HomepageController#home as HTML +Completed 406 Not Acceptable in 89ms (ActiveRecord: 0.0ms) + + + +ActionController::UnknownFormat - HomepageController#home is missing a template for this request format and variant. + +request.formats: ["text/html"] +request.variant: [] + +NOTE! For XHR/Ajax or API requests, this action would normally respond with 204 No Content: an empty white screen. Since you're loading it in a web browser, we assume that you expected to actually render a template, not nothing, so we're showing an error to be extra-clear. If you expect 204 No Content, carry on. That's what you'll get from an XHR or API request. Give it a shot.: + +Started POST "/__better_errors/6c0c4010160363e9/variables" for 127.0.0.1 at 2018-11-04 17:45:38 -0800 +Started POST "/__better_errors/6c0c4010160363e9/variables" for 127.0.0.1 at 2018-11-04 17:46:24 -0800 +Started POST "/__better_errors/6c0c4010160363e9/variables" for 127.0.0.1 at 2018-11-04 17:46:27 -0800 +Started POST "/__better_errors/6c0c4010160363e9/variables" for 127.0.0.1 at 2018-11-04 17:46:29 -0800 +Started POST "/__better_errors/6c0c4010160363e9/variables" for 127.0.0.1 at 2018-11-04 17:46:32 -0800 +Started POST "/__better_errors/6c0c4010160363e9/variables" for 127.0.0.1 at 2018-11-04 17:46:36 -0800 +Started POST "/__better_errors/6c0c4010160363e9/variables" for 127.0.0.1 at 2018-11-04 17:46:38 -0800 +Started POST "/__better_errors/6c0c4010160363e9/variables" for 127.0.0.1 at 2018-11-04 17:46:40 -0800 +Started GET "/" for 127.0.0.1 at 2018-11-04 17:47:14 -0800 +Processing by HomepageController#home as HTML +Completed 406 Not Acceptable in 88ms (ActiveRecord: 0.0ms) + + + +ActionController::UnknownFormat - HomepageController#home is missing a template for this request format and variant. + +request.formats: ["text/html"] +request.variant: [] + +NOTE! For XHR/Ajax or API requests, this action would normally respond with 204 No Content: an empty white screen. Since you're loading it in a web browser, we assume that you expected to actually render a template, not nothing, so we're showing an error to be extra-clear. If you expect 204 No Content, carry on. That's what you'll get from an XHR or API request. Give it a shot.: + +Started POST "/__better_errors/444bceb2dbab5c98/variables" for 127.0.0.1 at 2018-11-04 17:47:14 -0800 +Started GET "/" for 127.0.0.1 at 2018-11-04 17:47:15 -0800 +Processing by HomepageController#home as HTML +Completed 406 Not Acceptable in 89ms (ActiveRecord: 0.0ms) + + + +ActionController::UnknownFormat - HomepageController#home is missing a template for this request format and variant. + +request.formats: ["text/html"] +request.variant: [] + +NOTE! For XHR/Ajax or API requests, this action would normally respond with 204 No Content: an empty white screen. Since you're loading it in a web browser, we assume that you expected to actually render a template, not nothing, so we're showing an error to be extra-clear. If you expect 204 No Content, carry on. That's what you'll get from an XHR or API request. Give it a shot.: + +Started POST "/__better_errors/a0a2645c51164d9f/variables" for 127.0.0.1 at 2018-11-04 17:47:15 -0800 +Started GET "/" for 127.0.0.1 at 2018-11-04 17:47:16 -0800 +Processing by HomepageController#home as HTML +Completed 406 Not Acceptable in 91ms (ActiveRecord: 0.0ms) + + + +ActionController::UnknownFormat - HomepageController#home is missing a template for this request format and variant. + +request.formats: ["text/html"] +request.variant: [] + +NOTE! For XHR/Ajax or API requests, this action would normally respond with 204 No Content: an empty white screen. Since you're loading it in a web browser, we assume that you expected to actually render a template, not nothing, so we're showing an error to be extra-clear. If you expect 204 No Content, carry on. That's what you'll get from an XHR or API request. Give it a shot.: + +Started POST "/__better_errors/993d3ab591b1f5af/variables" for 127.0.0.1 at 2018-11-04 17:47:16 -0800 +Started GET "/" for 127.0.0.1 at 2018-11-04 17:47:17 -0800 +Processing by HomepageController#home as HTML +Completed 406 Not Acceptable in 92ms (ActiveRecord: 0.0ms) + + + +ActionController::UnknownFormat - HomepageController#home is missing a template for this request format and variant. + +request.formats: ["text/html"] +request.variant: [] + +NOTE! For XHR/Ajax or API requests, this action would normally respond with 204 No Content: an empty white screen. Since you're loading it in a web browser, we assume that you expected to actually render a template, not nothing, so we're showing an error to be extra-clear. If you expect 204 No Content, carry on. That's what you'll get from an XHR or API request. Give it a shot.: + +Started POST "/__better_errors/d85da13457d76b79/variables" for 127.0.0.1 at 2018-11-04 17:47:17 -0800 +Started POST "/__better_errors/d85da13457d76b79/variables" for 127.0.0.1 at 2018-11-04 17:47:28 -0800 +Started POST "/__better_errors/d85da13457d76b79/variables" for 127.0.0.1 at 2018-11-04 17:47:30 -0800 +Started POST "/__better_errors/d85da13457d76b79/variables" for 127.0.0.1 at 2018-11-04 17:47:33 -0800 +Started POST "/__better_errors/d85da13457d76b79/variables" for 127.0.0.1 at 2018-11-04 17:47:35 -0800 +Started POST "/__better_errors/d85da13457d76b79/variables" for 127.0.0.1 at 2018-11-04 17:47:37 -0800 +Started POST "/__better_errors/d85da13457d76b79/variables" for 127.0.0.1 at 2018-11-04 17:47:41 -0800 +Started POST "/__better_errors/d85da13457d76b79/variables" for 127.0.0.1 at 2018-11-04 17:47:42 -0800 +Started POST "/__better_errors/d85da13457d76b79/variables" for 127.0.0.1 at 2018-11-04 17:47:51 -0800 +Started POST "/__better_errors/d85da13457d76b79/variables" for 127.0.0.1 at 2018-11-04 17:47:57 -0800 +Started POST "/__better_errors/d85da13457d76b79/variables" for 127.0.0.1 at 2018-11-04 17:47:58 -0800 +Started POST "/__better_errors/d85da13457d76b79/variables" for 127.0.0.1 at 2018-11-04 17:47:58 -0800 +Started POST "/__better_errors/d85da13457d76b79/variables" for 127.0.0.1 at 2018-11-04 17:48:00 -0800 +Started POST "/__better_errors/d85da13457d76b79/variables" for 127.0.0.1 at 2018-11-04 17:48:03 -0800 +Started POST "/__better_errors/d85da13457d76b79/variables" for 127.0.0.1 at 2018-11-04 17:48:04 -0800 +Started POST "/__better_errors/d85da13457d76b79/variables" for 127.0.0.1 at 2018-11-04 17:48:05 -0800 +Started POST "/__better_errors/d85da13457d76b79/variables" for 127.0.0.1 at 2018-11-04 17:48:08 -0800 +Started POST "/__better_errors/d85da13457d76b79/variables" for 127.0.0.1 at 2018-11-04 17:48:09 -0800 +Started GET "/" for 127.0.0.1 at 2018-11-04 17:48:45 -0800 +Processing by HomepageController#home as HTML + Rendering homepage/home.html.erb within layouts/application + Rendered homepage/home.html.erb within layouts/application (0.3ms) +Completed 200 OK in 1354ms (Views: 1351.7ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 127.0.0.1 at 2018-11-04 17:50:04 -0800 +Processing by HomepageController#home as HTML + Rendering homepage/home.html.erb within layouts/application + Rendered homepage/home.html.erb within layouts/application (0.8ms) +Completed 200 OK in 22ms (Views: 19.7ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 127.0.0.1 at 2018-11-04 17:51:39 -0800 +Processing by HomepageController#home as HTML + Rendering homepage/home.html.erb within layouts/application + Rendered homepage/home.html.erb within layouts/application (0.8ms) +Completed 200 OK in 20ms (Views: 17.2ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 127.0.0.1 at 2018-11-04 17:51:41 -0800 +Processing by HomepageController#home as HTML + Rendering homepage/home.html.erb within layouts/application + Rendered homepage/home.html.erb within layouts/application (0.7ms) +Completed 200 OK in 20ms (Views: 17.4ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 127.0.0.1 at 2018-11-04 17:51:42 -0800 +Processing by HomepageController#home as HTML + Rendering homepage/home.html.erb within layouts/application + Rendered homepage/home.html.erb within layouts/application (0.5ms) +Completed 200 OK in 18ms (Views: 16.1ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 127.0.0.1 at 2018-11-04 17:51:43 -0800 +Processing by HomepageController#home as HTML + Rendering homepage/home.html.erb within layouts/application + Rendered homepage/home.html.erb within layouts/application (0.6ms) +Completed 200 OK in 18ms (Views: 15.4ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 127.0.0.1 at 2018-11-04 17:52:00 -0800 +Processing by HomepageController#home as HTML + Rendering homepage/home.html.erb within layouts/application + Rendered homepage/home.html.erb within layouts/application (0.5ms) +Completed 200 OK in 18ms (Views: 15.6ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 127.0.0.1 at 2018-11-04 17:57:36 -0800 +Processing by HomepageController#home as HTML + Rendering homepage/home.html.erb within layouts/application + Rendered homepage/home.html.erb within layouts/application (0.6ms) +Completed 200 OK in 18ms (Views: 15.3ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 127.0.0.1 at 2018-11-04 17:58:38 -0800 +Processing by HomepageController#home as HTML + Rendering homepage/home.html.erb within layouts/application + Rendered homepage/home.html.erb within layouts/application (0.6ms) +Completed 200 OK in 17ms (Views: 14.8ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 127.0.0.1 at 2018-11-04 17:59:21 -0800 +Processing by HomepageController#home as HTML + Rendering homepage/home.html.erb within layouts/application + Rendered homepage/home.html.erb within layouts/application (0.6ms) +Completed 200 OK in 18ms (Views: 15.5ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 127.0.0.1 at 2018-11-04 17:59:48 -0800 +Processing by HomepageController#home as HTML + Rendering homepage/home.html.erb within layouts/application + Rendered homepage/home.html.erb within layouts/application (0.7ms) +Completed 200 OK in 18ms (Views: 15.5ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=beef&commit=Search" for 127.0.0.1 at 2018-11-04 18:00:03 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"beef", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (3.1ms) +Completed 200 OK in 2688ms (Views: 15.1ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=beef&commit=Search" for 127.0.0.1 at 2018-11-04 18:07:17 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"beef", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (2.7ms) +Completed 200 OK in 2764ms (Views: 14.4ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=beef&commit=Search" for 127.0.0.1 at 2018-11-04 18:07:34 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"beef", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (3.0ms) +Completed 200 OK in 1972ms (Views: 15.5ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=beef&commit=Search" for 127.0.0.1 at 2018-11-04 18:07:42 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"beef", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 2076ms (Views: 14.8ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=eggs&commit=Search" for 127.0.0.1 at 2018-11-04 18:07:52 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"eggs", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 2475ms (Views: 13.9ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=eggs&commit=Search" for 127.0.0.1 at 2018-11-04 18:10:26 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"eggs", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.7ms) +Completed 500 Internal Server Error in 2877ms (ActiveRecord: 0.0ms) + + + +SyntaxError - syntax error, unexpected ')', expecting &. or :: or '[' or '.' +...e, recipe_path(r: recipe.uri) );@output_buffer.safe_append='... +... ^ +/Users/kjfitzpatrick/ada/week13/api-muncher/Api-Muncher/app/views/recipes/index.html.erb:25: syntax error, unexpected keyword_end, expecting ')' +'.freeze; end + ^~~ +/Users/kjfitzpatrick/ada/week13/api-muncher/Api-Muncher/app/views/recipes/index.html.erb:28: syntax error, unexpected keyword_end, expecting ')' +'.freeze; end + ^~~ +/Users/kjfitzpatrick/ada/week13/api-muncher/Api-Muncher/app/views/recipes/index.html.erb:43: syntax error, unexpected keyword_ensure, expecting ')' + ensure + ^~~~~~ +/Users/kjfitzpatrick/ada/week13/api-muncher/Api-Muncher/app/views/recipes/index.html.erb:45: syntax error, unexpected keyword_end, expecting ')' + end + ^~~: + app/views/recipes/index.html.erb:21:in `' + +Started POST "/__better_errors/26d98b90b4697c18/variables" for 127.0.0.1 at 2018-11-04 18:10:28 -0800 +Started GET "/search?utf8=%E2%9C%93&q=eggs&commit=Search" for 127.0.0.1 at 2018-11-04 18:11:25 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"eggs", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.7ms) +Completed 500 Internal Server Error in 2993ms (ActiveRecord: 0.0ms) + + + +SyntaxError - syntax error, unexpected ')', expecting &. or :: or '[' or '.' +...e, recipe_path(r: recipe.uri) );@output_buffer.safe_append='... +... ^ +/Users/kjfitzpatrick/ada/week13/api-muncher/Api-Muncher/app/views/recipes/index.html.erb:25: syntax error, unexpected keyword_end, expecting ')' +'.freeze; end + ^~~ +/Users/kjfitzpatrick/ada/week13/api-muncher/Api-Muncher/app/views/recipes/index.html.erb:28: syntax error, unexpected keyword_end, expecting ')' +'.freeze; end + ^~~ +/Users/kjfitzpatrick/ada/week13/api-muncher/Api-Muncher/app/views/recipes/index.html.erb:43: syntax error, unexpected keyword_ensure, expecting ')' + ensure + ^~~~~~ +/Users/kjfitzpatrick/ada/week13/api-muncher/Api-Muncher/app/views/recipes/index.html.erb:45: syntax error, unexpected keyword_end, expecting ')' + end + ^~~: + app/views/recipes/index.html.erb:21:in `' + +Started POST "/__better_errors/a20e20b745a16f95/variables" for 127.0.0.1 at 2018-11-04 18:11:28 -0800 +Started GET "/search?utf8=%E2%9C%93&q=eggs&commit=Search" for 127.0.0.1 at 2018-11-04 18:11:32 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"eggs", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.7ms) +Completed 500 Internal Server Error in 2985ms (ActiveRecord: 0.0ms) + + + +SyntaxError - syntax error, unexpected ')', expecting &. or :: or '[' or '.' +...e, recipe_path(r: recipe.uri) );@output_buffer.safe_append='... +... ^ +/Users/kjfitzpatrick/ada/week13/api-muncher/Api-Muncher/app/views/recipes/index.html.erb:25: syntax error, unexpected keyword_end, expecting ')' +'.freeze; end + ^~~ +/Users/kjfitzpatrick/ada/week13/api-muncher/Api-Muncher/app/views/recipes/index.html.erb:28: syntax error, unexpected keyword_end, expecting ')' +'.freeze; end + ^~~ +/Users/kjfitzpatrick/ada/week13/api-muncher/Api-Muncher/app/views/recipes/index.html.erb:43: syntax error, unexpected keyword_ensure, expecting ')' + ensure + ^~~~~~ +/Users/kjfitzpatrick/ada/week13/api-muncher/Api-Muncher/app/views/recipes/index.html.erb:45: syntax error, unexpected keyword_end, expecting ')' + end + ^~~: + app/views/recipes/index.html.erb:21:in `' + +Started POST "/__better_errors/4f0476530a54a823/variables" for 127.0.0.1 at 2018-11-04 18:11:35 -0800 +Started GET "/search?utf8=%E2%9C%93&q=eggs&commit=Search" for 127.0.0.1 at 2018-11-04 18:14:04 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"eggs", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (3.1ms) +Completed 200 OK in 2972ms (Views: 14.6ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=eggs&commit=Search" for 127.0.0.1 at 2018-11-04 18:15:44 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"eggs", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.7ms) +Completed 500 Internal Server Error in 2707ms (ActiveRecord: 0.0ms) + + + +SyntaxError - syntax error, unexpected keyword_ensure, expecting keyword_end + ensure + ^~~~~~ +/Users/kjfitzpatrick/ada/week13/api-muncher/Api-Muncher/app/views/recipes/index.html.erb:50: syntax error, unexpected end-of-input, expecting keyword_end + end + ^: + app/views/recipes/index.html.erb:48:in `' + +Started POST "/__better_errors/0829ceed2dc9e268/variables" for 127.0.0.1 at 2018-11-04 18:15:47 -0800 +Started GET "/search?utf8=%E2%9C%93&q=eggs&commit=Search" for 127.0.0.1 at 2018-11-04 18:15:53 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"eggs", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (3.3ms) +Completed 200 OK in 3638ms (Views: 16.1ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=eggs&commit=Search" for 127.0.0.1 at 2018-11-04 18:16:32 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"eggs", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (3.0ms) +Completed 200 OK in 4475ms (Views: 1391.6ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=eggs&commit=Search" for 127.0.0.1 at 2018-11-04 18:23:24 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"eggs", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 2968ms (Views: 14.9ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=eggs&commit=Search" for 127.0.0.1 at 2018-11-04 18:24:44 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"eggs", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 2962ms (Views: 38.1ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=eggs&commit=Search" for 127.0.0.1 at 2018-11-04 18:25:46 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"eggs", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 6718ms (Views: 19.9ms | ActiveRecord: 0.0ms) + + +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_57d41c954296c7332ee57e3f6bc6f99a" for 127.0.0.1 at 2018-11-04 18:25:59 -0800 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_57d41c954296c7332ee57e3f6bc6f99a"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (3.5ms) +Completed 200 OK in 4019ms (Views: 22.2ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=eggs&commit=Search" for 127.0.0.1 at 2018-11-04 18:26:59 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"eggs", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 3248ms (Views: 16.0ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=beef&commit=Search" for 127.0.0.1 at 2018-11-04 18:27:47 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"beef", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (2.3ms) +Completed 200 OK in 2415ms (Views: 14.3ms | ActiveRecord: 0.0ms) + + +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_710678b0fae9d4fa004975ef91aae1a3" for 127.0.0.1 at 2018-11-04 18:29:03 -0800 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_710678b0fae9d4fa004975ef91aae1a3"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (0.4ms) +Completed 200 OK in 1270ms (Views: 16.9ms | ActiveRecord: 0.0ms) + + +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_710678b0fae9d4fa004975ef91aae1a3" for 127.0.0.1 at 2018-11-04 18:30:23 -0800 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_710678b0fae9d4fa004975ef91aae1a3"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (0.5ms) +Completed 200 OK in 554ms (Views: 13.8ms | ActiveRecord: 0.0ms) + + +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_710678b0fae9d4fa004975ef91aae1a3" for 127.0.0.1 at 2018-11-04 18:30:32 -0800 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_710678b0fae9d4fa004975ef91aae1a3"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (0.5ms) +Completed 200 OK in 548ms (Views: 14.4ms | ActiveRecord: 0.0ms) + + +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_c17944a7af0decc2f627246b0bb24d8a" for 127.0.0.1 at 2018-11-04 18:30:41 -0800 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_c17944a7af0decc2f627246b0bb24d8a"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (0.5ms) +Completed 200 OK in 619ms (Views: 15.1ms | ActiveRecord: 0.0ms) + + +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_c17944a7af0decc2f627246b0bb24d8a" for 127.0.0.1 at 2018-11-04 18:31:19 -0800 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_c17944a7af0decc2f627246b0bb24d8a"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (0.5ms) +Completed 200 OK in 671ms (Views: 15.2ms | ActiveRecord: 0.0ms) + + +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_c17944a7af0decc2f627246b0bb24d8a" for 127.0.0.1 at 2018-11-04 18:33:33 -0800 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_c17944a7af0decc2f627246b0bb24d8a"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (0.5ms) +Completed 200 OK in 1281ms (Views: 14.8ms | ActiveRecord: 0.0ms) + + +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_c17944a7af0decc2f627246b0bb24d8a" for 127.0.0.1 at 2018-11-04 18:34:00 -0800 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_c17944a7af0decc2f627246b0bb24d8a"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (0.8ms) +Completed 500 Internal Server Error in 607ms (ActiveRecord: 0.0ms) + + + +SyntaxError - syntax error, unexpected keyword_ensure, expecting end-of-input + ensure + ^~~~~~: + app/views/recipes/show.html.erb:29:in `' + +Started POST "/__better_errors/e0cbe6b399f25c49/variables" for 127.0.0.1 at 2018-11-04 18:34:00 -0800 +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_c17944a7af0decc2f627246b0bb24d8a" for 127.0.0.1 at 2018-11-04 18:34:11 -0800 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_c17944a7af0decc2f627246b0bb24d8a"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (3.7ms) +Completed 500 Internal Server Error in 1063ms (ActiveRecord: 0.0ms) + + + +NoMethodError - undefined method `each' for nil:NilClass: + app/views/recipes/show.html.erb:5:in `_app_views_recipes_show_html_erb___1207840177023102881_70149108661600' + +Started POST "/__better_errors/0e28a2242b34b9c5/variables" for 127.0.0.1 at 2018-11-04 18:34:12 -0800 +Started POST "/__better_errors/0e28a2242b34b9c5/variables" for 127.0.0.1 at 2018-11-04 18:34:33 -0800 +Started GET "/" for 127.0.0.1 at 2018-11-04 18:34:49 -0800 +Processing by HomepageController#home as HTML + Rendering homepage/home.html.erb within layouts/application + Rendered homepage/home.html.erb within layouts/application (0.5ms) +Completed 200 OK in 16ms (Views: 13.5ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=cheese&commit=Search" for 127.0.0.1 at 2018-11-04 18:34:56 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"cheese", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (2.0ms) +Completed 200 OK in 3291ms (Views: 12.9ms | ActiveRecord: 0.0ms) + + +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_421df807e21c65c842ec62870604aed3" for 127.0.0.1 at 2018-11-04 18:35:02 -0800 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_421df807e21c65c842ec62870604aed3"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (3.6ms) +Completed 500 Internal Server Error in 590ms (ActiveRecord: 0.0ms) + + + +NoMethodError - undefined method `each' for nil:NilClass: + app/views/recipes/show.html.erb:5:in `_app_views_recipes_show_html_erb___1207840177023102881_70149199655320' + +Started POST "/__better_errors/7433ca87fad4729d/variables" for 127.0.0.1 at 2018-11-04 18:35:03 -0800 +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_421df807e21c65c842ec62870604aed3" for 127.0.0.1 at 2018-11-04 18:42:43 -0800 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_421df807e21c65c842ec62870604aed3"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (0.4ms) +Completed 200 OK in 775ms (Views: 11.7ms | ActiveRecord: 0.0ms) + + +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_421df807e21c65c842ec62870604aed3" for 127.0.0.1 at 2018-11-04 18:44:21 -0800 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_421df807e21c65c842ec62870604aed3"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (1.0ms) +Completed 500 Internal Server Error in 778ms (ActiveRecord: 0.0ms) + + + +SyntaxError - syntax error, unexpected keyword_end, expecting end-of-input +'.freeze; end + ^~~: + app/views/recipes/show.html.erb:17:in `' + +Started POST "/__better_errors/376a5c4d965a6525/variables" for 127.0.0.1 at 2018-11-04 18:44:22 -0800 +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_421df807e21c65c842ec62870604aed3" for 127.0.0.1 at 2018-11-04 18:44:37 -0800 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_421df807e21c65c842ec62870604aed3"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (0.7ms) +Completed 500 Internal Server Error in 677ms (ActiveRecord: 0.0ms) + + + +SyntaxError - syntax error, unexpected keyword_end, expecting end-of-input +'.freeze; end + ^~~: + app/views/recipes/show.html.erb:29:in `' + +Started POST "/__better_errors/6140b2320d618004/variables" for 127.0.0.1 at 2018-11-04 18:44:38 -0800 +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_421df807e21c65c842ec62870604aed3" for 127.0.0.1 at 2018-11-04 18:44:49 -0800 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_421df807e21c65c842ec62870604aed3"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (0.6ms) +Completed 500 Internal Server Error in 670ms (ActiveRecord: 0.0ms) + + + +SyntaxError - syntax error, unexpected keyword_ensure, expecting end-of-input + ensure + ^~~~~~: + app/views/recipes/show.html.erb:31:in `' + +Started POST "/__better_errors/d9e5cdaa53192686/variables" for 127.0.0.1 at 2018-11-04 18:44:50 -0800 +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_421df807e21c65c842ec62870604aed3" for 127.0.0.1 at 2018-11-04 18:44:58 -0800 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_421df807e21c65c842ec62870604aed3"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (313.9ms) +Completed 500 Internal Server Error in 930ms (ActiveRecord: 0.0ms) + + + +NameError - undefined local variable or method `recipe' for #<#:0x00007f99b74e59c8> +Did you mean? @recipe: + app/views/recipes/show.html.erb:7:in `_app_views_recipes_show_html_erb___1207840177023102881_70149091048600' + +Started POST "/__better_errors/d90710488003e84e/variables" for 127.0.0.1 at 2018-11-04 18:44:59 -0800 +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_421df807e21c65c842ec62870604aed3" for 127.0.0.1 at 2018-11-04 18:45:14 -0800 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_421df807e21c65c842ec62870604aed3"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (331.8ms) +Completed 500 Internal Server Error in 972ms (ActiveRecord: 0.0ms) + + + +NameError - undefined local variable or method `recipe' for #<#:0x00007f99c4c72e68> +Did you mean? @recipe: + app/views/recipes/show.html.erb:7:in `_app_views_recipes_show_html_erb___1207840177023102881_70149204057020' + +Started POST "/__better_errors/27397b588a18f37d/variables" for 127.0.0.1 at 2018-11-04 18:45:15 -0800 +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_421df807e21c65c842ec62870604aed3" for 127.0.0.1 at 2018-11-04 18:45:31 -0800 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_421df807e21c65c842ec62870604aed3"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (325.2ms) +Completed 500 Internal Server Error in 960ms (ActiveRecord: 0.0ms) + + + +NameError - undefined local variable or method `recipe' for #<#:0x00007f99b8db9d28> +Did you mean? @recipe: + app/views/recipes/show.html.erb:10:in `_app_views_recipes_show_html_erb___1207840177023102881_70149104063340' + +Started POST "/__better_errors/7d4d6daf85a26d5f/variables" for 127.0.0.1 at 2018-11-04 18:45:32 -0800 +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_421df807e21c65c842ec62870604aed3" for 127.0.0.1 at 2018-11-04 18:45:45 -0800 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_421df807e21c65c842ec62870604aed3"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (0.5ms) +Completed 200 OK in 605ms (Views: 15.3ms | ActiveRecord: 0.0ms) + + +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_421df807e21c65c842ec62870604aed3" for 127.0.0.1 at 2018-11-04 18:58:46 -0800 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_421df807e21c65c842ec62870604aed3"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (0.9ms) +Completed 500 Internal Server Error in 667ms (ActiveRecord: 0.0ms) + + + +SyntaxError - syntax error, unexpected end-of-input, expecting keyword_end + end + ^: + app/views/recipes/show.html.erb:44:in `' + +Started POST "/__better_errors/d3897b74fbd1f600/variables" for 127.0.0.1 at 2018-11-04 18:58:46 -0800 +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_421df807e21c65c842ec62870604aed3" for 127.0.0.1 at 2018-11-04 18:59:17 -0800 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_421df807e21c65c842ec62870604aed3"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (1.3ms) +Completed 200 OK in 652ms (Views: 34.2ms | ActiveRecord: 0.0ms) + + +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_421df807e21c65c842ec62870604aed3" for 127.0.0.1 at 2018-11-04 18:59:51 -0800 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_421df807e21c65c842ec62870604aed3"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (0.8ms) +Completed 200 OK in 636ms (Views: 21.7ms | ActiveRecord: 0.0ms) + + +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_421df807e21c65c842ec62870604aed3" for 127.0.0.1 at 2018-11-04 19:00:19 -0800 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_421df807e21c65c842ec62870604aed3"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (0.6ms) +Completed 200 OK in 557ms (Views: 19.8ms | ActiveRecord: 0.0ms) + + +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_421df807e21c65c842ec62870604aed3" for 127.0.0.1 at 2018-11-04 19:06:01 -0800 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_421df807e21c65c842ec62870604aed3"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (0.5ms) +Completed 200 OK in 1070ms (Views: 26.7ms | ActiveRecord: 0.0ms) + + +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_421df807e21c65c842ec62870604aed3" for 127.0.0.1 at 2018-11-04 19:07:21 -0800 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_421df807e21c65c842ec62870604aed3"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (0.5ms) +Completed 200 OK in 726ms (Views: 11.4ms | ActiveRecord: 0.0ms) + + +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_421df807e21c65c842ec62870604aed3" for 127.0.0.1 at 2018-11-04 19:07:34 -0800 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_421df807e21c65c842ec62870604aed3"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (0.5ms) +Completed 200 OK in 626ms (Views: 10.8ms | ActiveRecord: 0.0ms) + + +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_421df807e21c65c842ec62870604aed3" for 127.0.0.1 at 2018-11-04 19:07:48 -0800 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_421df807e21c65c842ec62870604aed3"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (0.5ms) +Completed 200 OK in 634ms (Views: 11.6ms | ActiveRecord: 0.0ms) + + +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_421df807e21c65c842ec62870604aed3" for 127.0.0.1 at 2018-11-04 19:09:21 -0800 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_421df807e21c65c842ec62870604aed3"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (405.5ms) +Completed 500 Internal Server Error in 958ms (ActiveRecord: 0.0ms) + + + +NameError - undefined local variable or method `ingredientLine' for #<#:0x00007f99c205bed8>: + app/views/recipes/show.html.erb:36:in `block in _app_views_recipes_show_html_erb___1207840177023102881_70149180937160' + app/views/recipes/show.html.erb:35:in `_app_views_recipes_show_html_erb___1207840177023102881_70149180937160' + +Started POST "/__better_errors/022661ade7ff5aaa/variables" for 127.0.0.1 at 2018-11-04 19:09:22 -0800 +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_421df807e21c65c842ec62870604aed3" for 127.0.0.1 at 2018-11-04 19:09:37 -0800 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_421df807e21c65c842ec62870604aed3"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (0.5ms) +Completed 200 OK in 561ms (Views: 13.7ms | ActiveRecord: 0.0ms) + + +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_421df807e21c65c842ec62870604aed3" for 127.0.0.1 at 2018-11-04 19:10:04 -0800 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_421df807e21c65c842ec62870604aed3"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (0.5ms) +Completed 200 OK in 713ms (Views: 11.0ms | ActiveRecord: 0.0ms) + + +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_421df807e21c65c842ec62870604aed3" for 127.0.0.1 at 2018-11-04 19:10:27 -0800 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_421df807e21c65c842ec62870604aed3"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (0.6ms) +Completed 200 OK in 627ms (Views: 13.9ms | ActiveRecord: 0.0ms) + + +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_421df807e21c65c842ec62870604aed3" for 127.0.0.1 at 2018-11-04 19:10:36 -0800 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_421df807e21c65c842ec62870604aed3"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (0.6ms) +Completed 200 OK in 533ms (Views: 13.7ms | ActiveRecord: 0.0ms) + + +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_421df807e21c65c842ec62870604aed3" for 127.0.0.1 at 2018-11-04 19:15:01 -0800 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_421df807e21c65c842ec62870604aed3"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (0.6ms) +Completed 200 OK in 725ms (Views: 13.5ms | ActiveRecord: 0.0ms) + + +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_421df807e21c65c842ec62870604aed3" for 127.0.0.1 at 2018-11-04 19:15:18 -0800 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_421df807e21c65c842ec62870604aed3"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (0.6ms) +Completed 200 OK in 676ms (Views: 14.1ms | ActiveRecord: 0.0ms) + + +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_421df807e21c65c842ec62870604aed3" for 127.0.0.1 at 2018-11-04 19:18:11 -0800 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_421df807e21c65c842ec62870604aed3"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (0.6ms) +Completed 200 OK in 2362ms (Views: 1550.4ms | ActiveRecord: 0.0ms) + + +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_421df807e21c65c842ec62870604aed3" for 127.0.0.1 at 2018-11-04 19:18:38 -0800 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_421df807e21c65c842ec62870604aed3"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (1.0ms) +Completed 200 OK in 1942ms (Views: 1413.4ms | ActiveRecord: 0.0ms) + + +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_421df807e21c65c842ec62870604aed3" for 127.0.0.1 at 2018-11-04 19:19:04 -0800 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_421df807e21c65c842ec62870604aed3"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (1.2ms) +Completed 200 OK in 2121ms (Views: 1529.3ms | ActiveRecord: 0.0ms) + + +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_421df807e21c65c842ec62870604aed3" for 127.0.0.1 at 2018-11-04 19:19:16 -0800 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_421df807e21c65c842ec62870604aed3"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (1.0ms) +Completed 200 OK in 1896ms (Views: 1356.3ms | ActiveRecord: 0.0ms) + + +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_421df807e21c65c842ec62870604aed3" for 127.0.0.1 at 2018-11-04 19:19:36 -0800 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_421df807e21c65c842ec62870604aed3"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (0.8ms) +Completed 200 OK in 555ms (Views: 14.4ms | ActiveRecord: 0.0ms) + + +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_421df807e21c65c842ec62870604aed3" for 127.0.0.1 at 2018-11-04 19:19:41 -0800 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_421df807e21c65c842ec62870604aed3"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (0.9ms) +Completed 200 OK in 554ms (Views: 16.7ms | ActiveRecord: 0.0ms) + + +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_421df807e21c65c842ec62870604aed3" for 127.0.0.1 at 2018-11-04 19:19:55 -0800 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_421df807e21c65c842ec62870604aed3"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (0.6ms) +Completed 200 OK in 2123ms (Views: 1494.2ms | ActiveRecord: 0.0ms) + + +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_421df807e21c65c842ec62870604aed3" for 127.0.0.1 at 2018-11-04 19:20:08 -0800 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_421df807e21c65c842ec62870604aed3"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (0.9ms) +Completed 200 OK in 3073ms (Views: 1404.5ms | ActiveRecord: 0.0ms) + + +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_421df807e21c65c842ec62870604aed3" for 127.0.0.1 at 2018-11-04 19:21:26 -0800 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_421df807e21c65c842ec62870604aed3"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (0.9ms) +Completed 500 Internal Server Error in 585ms (ActiveRecord: 0.0ms) + + + +Sass::SyntaxError - Invalid CSS after " }": expected selector or at-rule, was "}": + app/views/layouts/application.html.erb:8:in `_app_views_layouts_application_html_erb__4128253184315918423_70149198857600' + +Started POST "/__better_errors/fd0cc4f2a1085241/variables" for 127.0.0.1 at 2018-11-04 19:21:27 -0800 +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_421df807e21c65c842ec62870604aed3" for 127.0.0.1 at 2018-11-04 19:21:58 -0800 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_421df807e21c65c842ec62870604aed3"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (0.6ms) +Completed 200 OK in 2069ms (Views: 1487.0ms | ActiveRecord: 0.0ms) + + +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_421df807e21c65c842ec62870604aed3" for 127.0.0.1 at 2018-11-04 19:23:17 -0800 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_421df807e21c65c842ec62870604aed3"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (1.2ms) +Completed 200 OK in 686ms (Views: 19.4ms | ActiveRecord: 0.0ms) + + +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_421df807e21c65c842ec62870604aed3" for 127.0.0.1 at 2018-11-04 19:24:19 -0800 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_421df807e21c65c842ec62870604aed3"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (3.0ms) +Completed 200 OK in 545ms (Views: 19.0ms | ActiveRecord: 0.0ms) + + +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_421df807e21c65c842ec62870604aed3" for 127.0.0.1 at 2018-11-04 19:24:30 -0800 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_421df807e21c65c842ec62870604aed3"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (0.6ms) +Completed 200 OK in 600ms (Views: 15.7ms | ActiveRecord: 0.0ms) + + +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_421df807e21c65c842ec62870604aed3" for 127.0.0.1 at 2018-11-04 19:25:46 -0800 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_421df807e21c65c842ec62870604aed3"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (0.8ms) +Completed 200 OK in 1962ms (Views: 1415.9ms | ActiveRecord: 0.0ms) + + +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_421df807e21c65c842ec62870604aed3" for 127.0.0.1 at 2018-11-04 19:27:00 -0800 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_421df807e21c65c842ec62870604aed3"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (0.9ms) +Completed 200 OK in 947ms (Views: 15.2ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=cheese&commit=Search" for 127.0.0.1 at 2018-11-04 19:27:56 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"cheese", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 2388ms (Views: 14.3ms | ActiveRecord: 0.0ms) + + +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_421df807e21c65c842ec62870604aed3" for 127.0.0.1 at 2018-11-04 19:28:09 -0800 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_421df807e21c65c842ec62870604aed3"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (0.6ms) +Completed 200 OK in 593ms (Views: 15.0ms | ActiveRecord: 0.0ms) + + +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_421df807e21c65c842ec62870604aed3" for 127.0.0.1 at 2018-11-04 19:46:02 -0800 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_421df807e21c65c842ec62870604aed3"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (0.6ms) +Completed 200 OK in 2299ms (Views: 1546.3ms | ActiveRecord: 0.0ms) + + +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_421df807e21c65c842ec62870604aed3" for 127.0.0.1 at 2018-11-04 19:47:50 -0800 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_421df807e21c65c842ec62870604aed3"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (0.9ms) +Completed 200 OK in 533ms (Views: 16.2ms | ActiveRecord: 0.0ms) + + +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_421df807e21c65c842ec62870604aed3" for 127.0.0.1 at 2018-11-04 19:48:19 -0800 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_421df807e21c65c842ec62870604aed3"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (0.7ms) +Completed 200 OK in 621ms (Views: 15.8ms | ActiveRecord: 0.0ms) + + +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_421df807e21c65c842ec62870604aed3" for 127.0.0.1 at 2018-11-04 19:48:37 -0800 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_421df807e21c65c842ec62870604aed3"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (0.7ms) +Completed 200 OK in 526ms (Views: 15.2ms | ActiveRecord: 0.0ms) + + +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_421df807e21c65c842ec62870604aed3" for 127.0.0.1 at 2018-11-04 19:49:28 -0800 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_421df807e21c65c842ec62870604aed3"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (0.7ms) +Completed 200 OK in 816ms (Views: 16.0ms | ActiveRecord: 0.0ms) + + +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_421df807e21c65c842ec62870604aed3" for 127.0.0.1 at 2018-11-04 19:50:03 -0800 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_421df807e21c65c842ec62870604aed3"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (0.6ms) +Completed 200 OK in 931ms (Views: 17.4ms | ActiveRecord: 0.0ms) + + +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_421df807e21c65c842ec62870604aed3" for 127.0.0.1 at 2018-11-04 19:50:47 -0800 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_421df807e21c65c842ec62870604aed3"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (0.7ms) +Completed 200 OK in 2235ms (Views: 1434.1ms | ActiveRecord: 0.0ms) + + +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_421df807e21c65c842ec62870604aed3" for 127.0.0.1 at 2018-11-04 19:51:37 -0800 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_421df807e21c65c842ec62870604aed3"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (0.9ms) +Completed 200 OK in 2455ms (Views: 1539.1ms | ActiveRecord: 0.0ms) + + +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_421df807e21c65c842ec62870604aed3" for 127.0.0.1 at 2018-11-04 19:52:05 -0800 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_421df807e21c65c842ec62870604aed3"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (1.0ms) +Completed 200 OK in 1843ms (Views: 16.8ms | ActiveRecord: 0.0ms) + + +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_421df807e21c65c842ec62870604aed3" for 127.0.0.1 at 2018-11-04 19:53:54 -0800 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_421df807e21c65c842ec62870604aed3"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (0.7ms) +Completed 200 OK in 2236ms (Views: 1450.6ms | ActiveRecord: 0.0ms) + + +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_421df807e21c65c842ec62870604aed3" for 127.0.0.1 at 2018-11-04 19:55:33 -0800 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_421df807e21c65c842ec62870604aed3"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (1.0ms) +Completed 200 OK in 2435ms (Views: 1538.4ms | ActiveRecord: 0.0ms) + + +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_421df807e21c65c842ec62870604aed3" for 127.0.0.1 at 2018-11-04 19:56:07 -0800 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_421df807e21c65c842ec62870604aed3"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (1.0ms) +Completed 200 OK in 2253ms (Views: 1422.7ms | ActiveRecord: 0.0ms) + + +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_421df807e21c65c842ec62870604aed3" for 127.0.0.1 at 2018-11-04 19:57:01 -0800 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_421df807e21c65c842ec62870604aed3"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (0.9ms) +Completed 200 OK in 2283ms (Views: 1490.2ms | ActiveRecord: 0.0ms) + + +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_421df807e21c65c842ec62870604aed3" for 127.0.0.1 at 2018-11-04 19:57:06 -0800 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_421df807e21c65c842ec62870604aed3"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (1.3ms) +Completed 200 OK in 2102ms (Views: 17.5ms | ActiveRecord: 0.0ms) + + +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_421df807e21c65c842ec62870604aed3" for 127.0.0.1 at 2018-11-04 19:57:32 -0800 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_421df807e21c65c842ec62870604aed3"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (0.7ms) +Completed 200 OK in 2079ms (Views: 1442.8ms | ActiveRecord: 0.0ms) + + +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_421df807e21c65c842ec62870604aed3" for 127.0.0.1 at 2018-11-04 19:57:47 -0800 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_421df807e21c65c842ec62870604aed3"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (0.8ms) +Completed 200 OK in 2348ms (Views: 1513.0ms | ActiveRecord: 0.0ms) + + +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_421df807e21c65c842ec62870604aed3" for 127.0.0.1 at 2018-11-04 19:58:21 -0800 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_421df807e21c65c842ec62870604aed3"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (0.9ms) +Completed 200 OK in 2140ms (Views: 1379.5ms | ActiveRecord: 0.0ms) + + +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_421df807e21c65c842ec62870604aed3" for 127.0.0.1 at 2018-11-04 19:58:37 -0800 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_421df807e21c65c842ec62870604aed3"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (1.0ms) +Completed 200 OK in 2427ms (Views: 1509.0ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 127.0.0.1 at 2018-11-04 20:03:22 -0800 +Processing by HomepageController#home as HTML + Rendering homepage/home.html.erb within layouts/application + Rendered homepage/home.html.erb within layouts/application (1.0ms) +Completed 200 OK in 23ms (Views: 20.2ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=beef&commit=Search" for 127.0.0.1 at 2018-11-04 20:03:27 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"beef", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (2.7ms) +Completed 200 OK in 3339ms (Views: 15.3ms | ActiveRecord: 0.0ms) + + +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_c17944a7af0decc2f627246b0bb24d8a" for 127.0.0.1 at 2018-11-04 20:03:37 -0800 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_c17944a7af0decc2f627246b0bb24d8a"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (0.8ms) +Completed 200 OK in 759ms (Views: 15.9ms | ActiveRecord: 0.0ms) + + +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_c17944a7af0decc2f627246b0bb24d8a" for 127.0.0.1 at 2018-11-04 20:05:56 -0800 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_c17944a7af0decc2f627246b0bb24d8a"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (0.9ms) +Completed 200 OK in 767ms (Views: 17.0ms | ActiveRecord: 0.0ms) + + +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_c17944a7af0decc2f627246b0bb24d8a" for 127.0.0.1 at 2018-11-04 20:06:13 -0800 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_c17944a7af0decc2f627246b0bb24d8a"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (0.7ms) +Completed 200 OK in 1715ms (Views: 15.3ms | ActiveRecord: 0.0ms) + + +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_c17944a7af0decc2f627246b0bb24d8a" for 127.0.0.1 at 2018-11-04 20:14:02 -0800 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_c17944a7af0decc2f627246b0bb24d8a"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (0.8ms) +Completed 200 OK in 1154ms (Views: 17.3ms | ActiveRecord: 0.0ms) + + +Started GET "/home.html" for 127.0.0.1 at 2018-11-04 20:14:06 -0800 + +ActionController::RoutingError (No route matches [GET] "/home.html"): + +actionpack (5.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:65:in `call' +web-console (3.7.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.7.0) lib/web_console/middleware.rb:30:in `block in call' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `catch' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call' +railties (5.2.1) lib/rails/rack/logger.rb:38:in `call_app' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `block in call' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `block in tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:28:in `tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `tagged' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/remote_ip.rb:81:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/request_id.rb:27:in `call' +rack (2.0.5) lib/rack/method_override.rb:22:in `call' +rack (2.0.5) lib/rack/runtime.rb:22:in `call' +activesupport (5.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/executor.rb:14:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/static.rb:127:in `call' +rack (2.0.5) lib/rack/sendfile.rb:111:in `call' +railties (5.2.1) lib/rails/engine.rb:524:in `call' +puma (3.12.0) lib/puma/configuration.rb:225:in `call' +puma (3.12.0) lib/puma/server.rb:658:in `handle_request' +puma (3.12.0) lib/puma/server.rb:472:in `process_client' +puma (3.12.0) lib/puma/server.rb:332:in `block in run' +puma (3.12.0) lib/puma/thread_pool.rb:133:in `block in spawn_thread' +Started GET "/home.html" for 127.0.0.1 at 2018-11-04 20:18:29 -0800 + +ActionController::RoutingError (No route matches [GET] "/home.html"): + +actionpack (5.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:65:in `call' +web-console (3.7.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.7.0) lib/web_console/middleware.rb:30:in `block in call' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `catch' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call' +railties (5.2.1) lib/rails/rack/logger.rb:38:in `call_app' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `block in call' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `block in tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:28:in `tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `tagged' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/remote_ip.rb:81:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/request_id.rb:27:in `call' +rack (2.0.5) lib/rack/method_override.rb:22:in `call' +rack (2.0.5) lib/rack/runtime.rb:22:in `call' +activesupport (5.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/executor.rb:14:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/static.rb:127:in `call' +rack (2.0.5) lib/rack/sendfile.rb:111:in `call' +railties (5.2.1) lib/rails/engine.rb:524:in `call' +puma (3.12.0) lib/puma/configuration.rb:225:in `call' +puma (3.12.0) lib/puma/server.rb:658:in `handle_request' +puma (3.12.0) lib/puma/server.rb:472:in `process_client' +puma (3.12.0) lib/puma/server.rb:332:in `block in run' +puma (3.12.0) lib/puma/thread_pool.rb:133:in `block in spawn_thread' +Started GET "/home.html" for 127.0.0.1 at 2018-11-04 20:20:21 -0800 + +ActionController::RoutingError (No route matches [GET] "/home.html"): + +actionpack (5.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:65:in `call' +web-console (3.7.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.7.0) lib/web_console/middleware.rb:30:in `block in call' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `catch' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call' +railties (5.2.1) lib/rails/rack/logger.rb:38:in `call_app' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `block in call' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `block in tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:28:in `tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `tagged' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/remote_ip.rb:81:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/request_id.rb:27:in `call' +rack (2.0.5) lib/rack/method_override.rb:22:in `call' +rack (2.0.5) lib/rack/runtime.rb:22:in `call' +activesupport (5.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/executor.rb:14:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/static.rb:127:in `call' +rack (2.0.5) lib/rack/sendfile.rb:111:in `call' +railties (5.2.1) lib/rails/engine.rb:524:in `call' +puma (3.12.0) lib/puma/configuration.rb:225:in `call' +puma (3.12.0) lib/puma/server.rb:658:in `handle_request' +puma (3.12.0) lib/puma/server.rb:472:in `process_client' +puma (3.12.0) lib/puma/server.rb:332:in `block in run' +puma (3.12.0) lib/puma/thread_pool.rb:133:in `block in spawn_thread' +Started GET "/home.html" for 127.0.0.1 at 2018-11-04 20:29:44 -0800 + +ActionController::RoutingError (No route matches [GET] "/home.html"): + +actionpack (5.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:65:in `call' +web-console (3.7.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.7.0) lib/web_console/middleware.rb:30:in `block in call' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `catch' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call' +railties (5.2.1) lib/rails/rack/logger.rb:38:in `call_app' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `block in call' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `block in tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:28:in `tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `tagged' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/remote_ip.rb:81:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/request_id.rb:27:in `call' +rack (2.0.5) lib/rack/method_override.rb:22:in `call' +rack (2.0.5) lib/rack/runtime.rb:22:in `call' +activesupport (5.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/executor.rb:14:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/static.rb:127:in `call' +rack (2.0.5) lib/rack/sendfile.rb:111:in `call' +railties (5.2.1) lib/rails/engine.rb:524:in `call' +puma (3.12.0) lib/puma/configuration.rb:225:in `call' +puma (3.12.0) lib/puma/server.rb:658:in `handle_request' +puma (3.12.0) lib/puma/server.rb:472:in `process_client' +puma (3.12.0) lib/puma/server.rb:332:in `block in run' +puma (3.12.0) lib/puma/thread_pool.rb:133:in `block in spawn_thread' +Started GET "/home.html" for 127.0.0.1 at 2018-11-04 20:29:49 -0800 + +ActionController::RoutingError (No route matches [GET] "/home.html"): + +actionpack (5.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:65:in `call' +web-console (3.7.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.7.0) lib/web_console/middleware.rb:30:in `block in call' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `catch' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call' +railties (5.2.1) lib/rails/rack/logger.rb:38:in `call_app' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `block in call' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `block in tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:28:in `tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `tagged' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/remote_ip.rb:81:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/request_id.rb:27:in `call' +rack (2.0.5) lib/rack/method_override.rb:22:in `call' +rack (2.0.5) lib/rack/runtime.rb:22:in `call' +activesupport (5.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/executor.rb:14:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/static.rb:127:in `call' +rack (2.0.5) lib/rack/sendfile.rb:111:in `call' +railties (5.2.1) lib/rails/engine.rb:524:in `call' +puma (3.12.0) lib/puma/configuration.rb:225:in `call' +puma (3.12.0) lib/puma/server.rb:658:in `handle_request' +puma (3.12.0) lib/puma/server.rb:472:in `process_client' +puma (3.12.0) lib/puma/server.rb:332:in `block in run' +puma (3.12.0) lib/puma/thread_pool.rb:133:in `block in spawn_thread' +Started GET "/home.html" for 127.0.0.1 at 2018-11-04 20:29:50 -0800 + +ActionController::RoutingError (No route matches [GET] "/home.html"): + +actionpack (5.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:65:in `call' +web-console (3.7.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.7.0) lib/web_console/middleware.rb:30:in `block in call' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `catch' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call' +railties (5.2.1) lib/rails/rack/logger.rb:38:in `call_app' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `block in call' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `block in tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:28:in `tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `tagged' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/remote_ip.rb:81:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/request_id.rb:27:in `call' +rack (2.0.5) lib/rack/method_override.rb:22:in `call' +rack (2.0.5) lib/rack/runtime.rb:22:in `call' +activesupport (5.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/executor.rb:14:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/static.rb:127:in `call' +rack (2.0.5) lib/rack/sendfile.rb:111:in `call' +railties (5.2.1) lib/rails/engine.rb:524:in `call' +puma (3.12.0) lib/puma/configuration.rb:225:in `call' +puma (3.12.0) lib/puma/server.rb:658:in `handle_request' +puma (3.12.0) lib/puma/server.rb:472:in `process_client' +puma (3.12.0) lib/puma/server.rb:332:in `block in run' +puma (3.12.0) lib/puma/thread_pool.rb:133:in `block in spawn_thread' +Started GET "/home.html" for 127.0.0.1 at 2018-11-04 20:29:51 -0800 + +ActionController::RoutingError (No route matches [GET] "/home.html"): + +actionpack (5.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:65:in `call' +web-console (3.7.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.7.0) lib/web_console/middleware.rb:30:in `block in call' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `catch' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call' +railties (5.2.1) lib/rails/rack/logger.rb:38:in `call_app' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `block in call' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `block in tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:28:in `tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `tagged' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/remote_ip.rb:81:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/request_id.rb:27:in `call' +rack (2.0.5) lib/rack/method_override.rb:22:in `call' +rack (2.0.5) lib/rack/runtime.rb:22:in `call' +activesupport (5.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/executor.rb:14:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/static.rb:127:in `call' +rack (2.0.5) lib/rack/sendfile.rb:111:in `call' +railties (5.2.1) lib/rails/engine.rb:524:in `call' +puma (3.12.0) lib/puma/configuration.rb:225:in `call' +puma (3.12.0) lib/puma/server.rb:658:in `handle_request' +puma (3.12.0) lib/puma/server.rb:472:in `process_client' +puma (3.12.0) lib/puma/server.rb:332:in `block in run' +puma (3.12.0) lib/puma/thread_pool.rb:133:in `block in spawn_thread' +Started GET "/home.html" for 127.0.0.1 at 2018-11-04 20:29:54 -0800 + +ActionController::RoutingError (No route matches [GET] "/home.html"): + +actionpack (5.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:65:in `call' +web-console (3.7.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.7.0) lib/web_console/middleware.rb:30:in `block in call' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `catch' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call' +railties (5.2.1) lib/rails/rack/logger.rb:38:in `call_app' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `block in call' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `block in tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:28:in `tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `tagged' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/remote_ip.rb:81:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/request_id.rb:27:in `call' +rack (2.0.5) lib/rack/method_override.rb:22:in `call' +rack (2.0.5) lib/rack/runtime.rb:22:in `call' +activesupport (5.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/executor.rb:14:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/static.rb:127:in `call' +rack (2.0.5) lib/rack/sendfile.rb:111:in `call' +railties (5.2.1) lib/rails/engine.rb:524:in `call' +puma (3.12.0) lib/puma/configuration.rb:225:in `call' +puma (3.12.0) lib/puma/server.rb:658:in `handle_request' +puma (3.12.0) lib/puma/server.rb:472:in `process_client' +puma (3.12.0) lib/puma/server.rb:332:in `block in run' +puma (3.12.0) lib/puma/thread_pool.rb:133:in `block in spawn_thread' +Started GET "/home.html" for 127.0.0.1 at 2018-11-04 20:30:25 -0800 + +ActionController::RoutingError (No route matches [GET] "/home.html"): + +actionpack (5.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:65:in `call' +web-console (3.7.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.7.0) lib/web_console/middleware.rb:30:in `block in call' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `catch' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call' +railties (5.2.1) lib/rails/rack/logger.rb:38:in `call_app' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `block in call' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `block in tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:28:in `tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `tagged' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/remote_ip.rb:81:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/request_id.rb:27:in `call' +rack (2.0.5) lib/rack/method_override.rb:22:in `call' +rack (2.0.5) lib/rack/runtime.rb:22:in `call' +activesupport (5.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/executor.rb:14:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/static.rb:127:in `call' +rack (2.0.5) lib/rack/sendfile.rb:111:in `call' +railties (5.2.1) lib/rails/engine.rb:524:in `call' +puma (3.12.0) lib/puma/configuration.rb:225:in `call' +puma (3.12.0) lib/puma/server.rb:658:in `handle_request' +puma (3.12.0) lib/puma/server.rb:472:in `process_client' +puma (3.12.0) lib/puma/server.rb:332:in `block in run' +puma (3.12.0) lib/puma/thread_pool.rb:133:in `block in spawn_thread' +Started GET "/home.html" for 127.0.0.1 at 2018-11-04 20:30:26 -0800 + +ActionController::RoutingError (No route matches [GET] "/home.html"): + +actionpack (5.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:65:in `call' +web-console (3.7.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.7.0) lib/web_console/middleware.rb:30:in `block in call' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `catch' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call' +railties (5.2.1) lib/rails/rack/logger.rb:38:in `call_app' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `block in call' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `block in tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:28:in `tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `tagged' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/remote_ip.rb:81:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/request_id.rb:27:in `call' +rack (2.0.5) lib/rack/method_override.rb:22:in `call' +rack (2.0.5) lib/rack/runtime.rb:22:in `call' +activesupport (5.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/executor.rb:14:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/static.rb:127:in `call' +rack (2.0.5) lib/rack/sendfile.rb:111:in `call' +railties (5.2.1) lib/rails/engine.rb:524:in `call' +puma (3.12.0) lib/puma/configuration.rb:225:in `call' +puma (3.12.0) lib/puma/server.rb:658:in `handle_request' +puma (3.12.0) lib/puma/server.rb:472:in `process_client' +puma (3.12.0) lib/puma/server.rb:332:in `block in run' +puma (3.12.0) lib/puma/thread_pool.rb:133:in `block in spawn_thread' +Started GET "/home.html" for 127.0.0.1 at 2018-11-04 20:30:37 -0800 + +ActionController::RoutingError (No route matches [GET] "/home.html"): + +actionpack (5.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:65:in `call' +web-console (3.7.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.7.0) lib/web_console/middleware.rb:30:in `block in call' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `catch' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call' +railties (5.2.1) lib/rails/rack/logger.rb:38:in `call_app' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `block in call' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `block in tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:28:in `tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `tagged' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/remote_ip.rb:81:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/request_id.rb:27:in `call' +rack (2.0.5) lib/rack/method_override.rb:22:in `call' +rack (2.0.5) lib/rack/runtime.rb:22:in `call' +activesupport (5.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/executor.rb:14:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/static.rb:127:in `call' +rack (2.0.5) lib/rack/sendfile.rb:111:in `call' +railties (5.2.1) lib/rails/engine.rb:524:in `call' +puma (3.12.0) lib/puma/configuration.rb:225:in `call' +puma (3.12.0) lib/puma/server.rb:658:in `handle_request' +puma (3.12.0) lib/puma/server.rb:472:in `process_client' +puma (3.12.0) lib/puma/server.rb:332:in `block in run' +puma (3.12.0) lib/puma/thread_pool.rb:133:in `block in spawn_thread' +Started GET "/home.html" for 127.0.0.1 at 2018-11-04 20:30:39 -0800 + +ActionController::RoutingError (No route matches [GET] "/home.html"): + +actionpack (5.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:65:in `call' +web-console (3.7.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.7.0) lib/web_console/middleware.rb:30:in `block in call' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `catch' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call' +railties (5.2.1) lib/rails/rack/logger.rb:38:in `call_app' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `block in call' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `block in tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:28:in `tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `tagged' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/remote_ip.rb:81:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/request_id.rb:27:in `call' +rack (2.0.5) lib/rack/method_override.rb:22:in `call' +rack (2.0.5) lib/rack/runtime.rb:22:in `call' +activesupport (5.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/executor.rb:14:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/static.rb:127:in `call' +rack (2.0.5) lib/rack/sendfile.rb:111:in `call' +railties (5.2.1) lib/rails/engine.rb:524:in `call' +puma (3.12.0) lib/puma/configuration.rb:225:in `call' +puma (3.12.0) lib/puma/server.rb:658:in `handle_request' +puma (3.12.0) lib/puma/server.rb:472:in `process_client' +puma (3.12.0) lib/puma/server.rb:332:in `block in run' +puma (3.12.0) lib/puma/thread_pool.rb:133:in `block in spawn_thread' +Started GET "/home.html" for 127.0.0.1 at 2018-11-04 20:30:40 -0800 + +ActionController::RoutingError (No route matches [GET] "/home.html"): + +actionpack (5.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:65:in `call' +web-console (3.7.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.7.0) lib/web_console/middleware.rb:30:in `block in call' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `catch' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call' +railties (5.2.1) lib/rails/rack/logger.rb:38:in `call_app' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `block in call' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `block in tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:28:in `tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `tagged' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/remote_ip.rb:81:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/request_id.rb:27:in `call' +rack (2.0.5) lib/rack/method_override.rb:22:in `call' +rack (2.0.5) lib/rack/runtime.rb:22:in `call' +activesupport (5.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/executor.rb:14:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/static.rb:127:in `call' +rack (2.0.5) lib/rack/sendfile.rb:111:in `call' +railties (5.2.1) lib/rails/engine.rb:524:in `call' +puma (3.12.0) lib/puma/configuration.rb:225:in `call' +puma (3.12.0) lib/puma/server.rb:658:in `handle_request' +puma (3.12.0) lib/puma/server.rb:472:in `process_client' +puma (3.12.0) lib/puma/server.rb:332:in `block in run' +puma (3.12.0) lib/puma/thread_pool.rb:133:in `block in spawn_thread' +Started GET "/home.html" for 127.0.0.1 at 2018-11-04 20:30:52 -0800 + +ActionController::RoutingError (No route matches [GET] "/home.html"): + +actionpack (5.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:65:in `call' +web-console (3.7.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.7.0) lib/web_console/middleware.rb:30:in `block in call' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `catch' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call' +railties (5.2.1) lib/rails/rack/logger.rb:38:in `call_app' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `block in call' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `block in tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:28:in `tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `tagged' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/remote_ip.rb:81:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/request_id.rb:27:in `call' +rack (2.0.5) lib/rack/method_override.rb:22:in `call' +rack (2.0.5) lib/rack/runtime.rb:22:in `call' +activesupport (5.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/executor.rb:14:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/static.rb:127:in `call' +rack (2.0.5) lib/rack/sendfile.rb:111:in `call' +railties (5.2.1) lib/rails/engine.rb:524:in `call' +puma (3.12.0) lib/puma/configuration.rb:225:in `call' +puma (3.12.0) lib/puma/server.rb:658:in `handle_request' +puma (3.12.0) lib/puma/server.rb:472:in `process_client' +puma (3.12.0) lib/puma/server.rb:332:in `block in run' +puma (3.12.0) lib/puma/thread_pool.rb:133:in `block in spawn_thread' +Started GET "/home.html" for 127.0.0.1 at 2018-11-04 20:30:56 -0800 + +ActionController::RoutingError (No route matches [GET] "/home.html"): + +actionpack (5.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:65:in `call' +web-console (3.7.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.7.0) lib/web_console/middleware.rb:30:in `block in call' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `catch' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call' +railties (5.2.1) lib/rails/rack/logger.rb:38:in `call_app' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `block in call' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `block in tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:28:in `tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `tagged' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/remote_ip.rb:81:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/request_id.rb:27:in `call' +rack (2.0.5) lib/rack/method_override.rb:22:in `call' +rack (2.0.5) lib/rack/runtime.rb:22:in `call' +activesupport (5.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/executor.rb:14:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/static.rb:127:in `call' +rack (2.0.5) lib/rack/sendfile.rb:111:in `call' +railties (5.2.1) lib/rails/engine.rb:524:in `call' +puma (3.12.0) lib/puma/configuration.rb:225:in `call' +puma (3.12.0) lib/puma/server.rb:658:in `handle_request' +puma (3.12.0) lib/puma/server.rb:472:in `process_client' +puma (3.12.0) lib/puma/server.rb:332:in `block in run' +puma (3.12.0) lib/puma/thread_pool.rb:133:in `block in spawn_thread' +Started GET "/home.html" for 127.0.0.1 at 2018-11-04 20:32:59 -0800 + +ActionController::RoutingError (No route matches [GET] "/home.html"): + +actionpack (5.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:65:in `call' +web-console (3.7.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.7.0) lib/web_console/middleware.rb:30:in `block in call' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `catch' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call' +railties (5.2.1) lib/rails/rack/logger.rb:38:in `call_app' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `block in call' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `block in tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:28:in `tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `tagged' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/remote_ip.rb:81:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/request_id.rb:27:in `call' +rack (2.0.5) lib/rack/method_override.rb:22:in `call' +rack (2.0.5) lib/rack/runtime.rb:22:in `call' +activesupport (5.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/executor.rb:14:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/static.rb:127:in `call' +rack (2.0.5) lib/rack/sendfile.rb:111:in `call' +railties (5.2.1) lib/rails/engine.rb:524:in `call' +puma (3.12.0) lib/puma/configuration.rb:225:in `call' +puma (3.12.0) lib/puma/server.rb:658:in `handle_request' +puma (3.12.0) lib/puma/server.rb:472:in `process_client' +puma (3.12.0) lib/puma/server.rb:332:in `block in run' +puma (3.12.0) lib/puma/thread_pool.rb:133:in `block in spawn_thread' +Started GET "/" for 127.0.0.1 at 2018-11-04 20:33:17 -0800 + +AbstractController::ActionNotFound - The action 'root' could not be found for HomepageController: + +Started POST "/__better_errors/bc045cd60237c025/variables" for 127.0.0.1 at 2018-11-04 20:33:17 -0800 +Started GET "/" for 127.0.0.1 at 2018-11-04 20:33:24 -0800 + +AbstractController::ActionNotFound - The action 'root' could not be found for HomepageController: + +Started POST "/__better_errors/cad39bffc266d458/variables" for 127.0.0.1 at 2018-11-04 20:33:24 -0800 +Started GET "/" for 127.0.0.1 at 2018-11-04 20:34:02 -0800 +Processing by HomepageController#home as HTML + Rendering homepage/home.html.erb within layouts/application + Rendered homepage/home.html.erb within layouts/application (0.6ms) +Completed 200 OK in 17ms (Views: 15.2ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=beef&commit=Search" for 127.0.0.1 at 2018-11-04 20:34:09 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"beef", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 2485ms (Views: 14.6ms | ActiveRecord: 0.0ms) + + +Started GET "/home.html" for 127.0.0.1 at 2018-11-04 20:34:13 -0800 + +ActionController::RoutingError (No route matches [GET] "/home.html"): + +actionpack (5.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:65:in `call' +web-console (3.7.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.7.0) lib/web_console/middleware.rb:30:in `block in call' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `catch' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call' +railties (5.2.1) lib/rails/rack/logger.rb:38:in `call_app' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `block in call' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `block in tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:28:in `tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `tagged' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/remote_ip.rb:81:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/request_id.rb:27:in `call' +rack (2.0.5) lib/rack/method_override.rb:22:in `call' +rack (2.0.5) lib/rack/runtime.rb:22:in `call' +activesupport (5.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/executor.rb:14:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/static.rb:127:in `call' +rack (2.0.5) lib/rack/sendfile.rb:111:in `call' +railties (5.2.1) lib/rails/engine.rb:524:in `call' +puma (3.12.0) lib/puma/configuration.rb:225:in `call' +puma (3.12.0) lib/puma/server.rb:658:in `handle_request' +puma (3.12.0) lib/puma/server.rb:472:in `process_client' +puma (3.12.0) lib/puma/server.rb:332:in `block in run' +puma (3.12.0) lib/puma/thread_pool.rb:133:in `block in spawn_thread' +Started GET "/home.html" for 127.0.0.1 at 2018-11-04 20:34:40 -0800 + +ActionController::RoutingError (No route matches [GET] "/home.html"): + +actionpack (5.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:65:in `call' +web-console (3.7.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.7.0) lib/web_console/middleware.rb:30:in `block in call' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `catch' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call' +railties (5.2.1) lib/rails/rack/logger.rb:38:in `call_app' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `block in call' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `block in tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:28:in `tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `tagged' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/remote_ip.rb:81:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/request_id.rb:27:in `call' +rack (2.0.5) lib/rack/method_override.rb:22:in `call' +rack (2.0.5) lib/rack/runtime.rb:22:in `call' +activesupport (5.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/executor.rb:14:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/static.rb:127:in `call' +rack (2.0.5) lib/rack/sendfile.rb:111:in `call' +railties (5.2.1) lib/rails/engine.rb:524:in `call' +puma (3.12.0) lib/puma/configuration.rb:225:in `call' +puma (3.12.0) lib/puma/server.rb:658:in `handle_request' +puma (3.12.0) lib/puma/server.rb:472:in `process_client' +puma (3.12.0) lib/puma/server.rb:332:in `block in run' +puma (3.12.0) lib/puma/thread_pool.rb:133:in `block in spawn_thread' +Started GET "/home.html" for 127.0.0.1 at 2018-11-04 20:34:44 -0800 + +ActionController::RoutingError (No route matches [GET] "/home.html"): + +actionpack (5.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:65:in `call' +web-console (3.7.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.7.0) lib/web_console/middleware.rb:30:in `block in call' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `catch' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call' +railties (5.2.1) lib/rails/rack/logger.rb:38:in `call_app' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `block in call' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `block in tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:28:in `tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `tagged' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/remote_ip.rb:81:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/request_id.rb:27:in `call' +rack (2.0.5) lib/rack/method_override.rb:22:in `call' +rack (2.0.5) lib/rack/runtime.rb:22:in `call' +activesupport (5.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/executor.rb:14:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/static.rb:127:in `call' +rack (2.0.5) lib/rack/sendfile.rb:111:in `call' +railties (5.2.1) lib/rails/engine.rb:524:in `call' +puma (3.12.0) lib/puma/configuration.rb:225:in `call' +puma (3.12.0) lib/puma/server.rb:658:in `handle_request' +puma (3.12.0) lib/puma/server.rb:472:in `process_client' +puma (3.12.0) lib/puma/server.rb:332:in `block in run' +puma (3.12.0) lib/puma/thread_pool.rb:133:in `block in spawn_thread' +Started GET "/home.html" for 127.0.0.1 at 2018-11-04 20:34:45 -0800 + +ActionController::RoutingError (No route matches [GET] "/home.html"): + +actionpack (5.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:65:in `call' +web-console (3.7.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.7.0) lib/web_console/middleware.rb:30:in `block in call' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `catch' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call' +railties (5.2.1) lib/rails/rack/logger.rb:38:in `call_app' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `block in call' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `block in tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:28:in `tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `tagged' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/remote_ip.rb:81:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/request_id.rb:27:in `call' +rack (2.0.5) lib/rack/method_override.rb:22:in `call' +rack (2.0.5) lib/rack/runtime.rb:22:in `call' +activesupport (5.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/executor.rb:14:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/static.rb:127:in `call' +rack (2.0.5) lib/rack/sendfile.rb:111:in `call' +railties (5.2.1) lib/rails/engine.rb:524:in `call' +puma (3.12.0) lib/puma/configuration.rb:225:in `call' +puma (3.12.0) lib/puma/server.rb:658:in `handle_request' +puma (3.12.0) lib/puma/server.rb:472:in `process_client' +puma (3.12.0) lib/puma/server.rb:332:in `block in run' +puma (3.12.0) lib/puma/thread_pool.rb:133:in `block in spawn_thread' +Started GET "/home.html" for 127.0.0.1 at 2018-11-04 20:34:46 -0800 + +ActionController::RoutingError (No route matches [GET] "/home.html"): + +actionpack (5.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:65:in `call' +web-console (3.7.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.7.0) lib/web_console/middleware.rb:30:in `block in call' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `catch' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call' +railties (5.2.1) lib/rails/rack/logger.rb:38:in `call_app' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `block in call' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `block in tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:28:in `tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `tagged' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/remote_ip.rb:81:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/request_id.rb:27:in `call' +rack (2.0.5) lib/rack/method_override.rb:22:in `call' +rack (2.0.5) lib/rack/runtime.rb:22:in `call' +activesupport (5.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/executor.rb:14:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/static.rb:127:in `call' +rack (2.0.5) lib/rack/sendfile.rb:111:in `call' +railties (5.2.1) lib/rails/engine.rb:524:in `call' +puma (3.12.0) lib/puma/configuration.rb:225:in `call' +puma (3.12.0) lib/puma/server.rb:658:in `handle_request' +puma (3.12.0) lib/puma/server.rb:472:in `process_client' +puma (3.12.0) lib/puma/server.rb:332:in `block in run' +puma (3.12.0) lib/puma/thread_pool.rb:133:in `block in spawn_thread' +Started GET "/home.html" for 127.0.0.1 at 2018-11-04 20:34:49 -0800 + +ActionController::RoutingError (No route matches [GET] "/home.html"): + +actionpack (5.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:65:in `call' +web-console (3.7.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.7.0) lib/web_console/middleware.rb:30:in `block in call' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `catch' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call' +railties (5.2.1) lib/rails/rack/logger.rb:38:in `call_app' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `block in call' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `block in tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:28:in `tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `tagged' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/remote_ip.rb:81:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/request_id.rb:27:in `call' +rack (2.0.5) lib/rack/method_override.rb:22:in `call' +rack (2.0.5) lib/rack/runtime.rb:22:in `call' +activesupport (5.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/executor.rb:14:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/static.rb:127:in `call' +rack (2.0.5) lib/rack/sendfile.rb:111:in `call' +railties (5.2.1) lib/rails/engine.rb:524:in `call' +puma (3.12.0) lib/puma/configuration.rb:225:in `call' +puma (3.12.0) lib/puma/server.rb:658:in `handle_request' +puma (3.12.0) lib/puma/server.rb:472:in `process_client' +puma (3.12.0) lib/puma/server.rb:332:in `block in run' +puma (3.12.0) lib/puma/thread_pool.rb:133:in `block in spawn_thread' +Started GET "/home.html" for 127.0.0.1 at 2018-11-04 21:24:23 -0800 + +ActionController::RoutingError (No route matches [GET] "/home.html"): + +actionpack (5.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:65:in `call' +web-console (3.7.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.7.0) lib/web_console/middleware.rb:30:in `block in call' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `catch' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call' +railties (5.2.1) lib/rails/rack/logger.rb:38:in `call_app' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `block in call' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `block in tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:28:in `tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `tagged' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/remote_ip.rb:81:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/request_id.rb:27:in `call' +rack (2.0.5) lib/rack/method_override.rb:22:in `call' +rack (2.0.5) lib/rack/runtime.rb:22:in `call' +activesupport (5.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/executor.rb:14:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/static.rb:127:in `call' +rack (2.0.5) lib/rack/sendfile.rb:111:in `call' +railties (5.2.1) lib/rails/engine.rb:524:in `call' +puma (3.12.0) lib/puma/configuration.rb:225:in `call' +puma (3.12.0) lib/puma/server.rb:658:in `handle_request' +puma (3.12.0) lib/puma/server.rb:472:in `process_client' +puma (3.12.0) lib/puma/server.rb:332:in `block in run' +puma (3.12.0) lib/puma/thread_pool.rb:133:in `block in spawn_thread' +Started GET "/search?utf8=%E2%9C%93&q=chilli&commit=Search" for 127.0.0.1 at 2018-11-04 21:25:31 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"chilli", "commit"=>"Search"} +Started GET "/search?utf8=%E2%9C%93&q=chilli&commit=Search" for 127.0.0.1 at 2018-11-04 21:25:42 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"chilli", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (2.3ms) +Completed 200 OK in 16804ms (Views: 15.1ms | ActiveRecord: 0.0ms) + + + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 6173ms (Views: 12.7ms | ActiveRecord: 0.0ms) + + +Started GET "/home.html" for 127.0.0.1 at 2018-11-04 22:14:56 -0800 + +ActionController::RoutingError (No route matches [GET] "/home.html"): + +actionpack (5.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:65:in `call' +web-console (3.7.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.7.0) lib/web_console/middleware.rb:30:in `block in call' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `catch' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call' +railties (5.2.1) lib/rails/rack/logger.rb:38:in `call_app' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `block in call' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `block in tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:28:in `tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `tagged' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/remote_ip.rb:81:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/request_id.rb:27:in `call' +rack (2.0.5) lib/rack/method_override.rb:22:in `call' +rack (2.0.5) lib/rack/runtime.rb:22:in `call' +activesupport (5.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/executor.rb:14:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/static.rb:127:in `call' +rack (2.0.5) lib/rack/sendfile.rb:111:in `call' +railties (5.2.1) lib/rails/engine.rb:524:in `call' +puma (3.12.0) lib/puma/configuration.rb:225:in `call' +puma (3.12.0) lib/puma/server.rb:658:in `handle_request' +puma (3.12.0) lib/puma/server.rb:472:in `process_client' +puma (3.12.0) lib/puma/server.rb:332:in `block in run' +puma (3.12.0) lib/puma/thread_pool.rb:133:in `block in spawn_thread' +Started GET "/home.html" for 127.0.0.1 at 2018-11-04 22:15:08 -0800 + +ActionController::RoutingError (No route matches [GET] "/home.html"): + +actionpack (5.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:65:in `call' +web-console (3.7.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.7.0) lib/web_console/middleware.rb:30:in `block in call' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `catch' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call' +railties (5.2.1) lib/rails/rack/logger.rb:38:in `call_app' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `block in call' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `block in tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:28:in `tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `tagged' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/remote_ip.rb:81:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/request_id.rb:27:in `call' +rack (2.0.5) lib/rack/method_override.rb:22:in `call' +rack (2.0.5) lib/rack/runtime.rb:22:in `call' +activesupport (5.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/executor.rb:14:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/static.rb:127:in `call' +rack (2.0.5) lib/rack/sendfile.rb:111:in `call' +railties (5.2.1) lib/rails/engine.rb:524:in `call' +puma (3.12.0) lib/puma/configuration.rb:225:in `call' +puma (3.12.0) lib/puma/server.rb:658:in `handle_request' +puma (3.12.0) lib/puma/server.rb:472:in `process_client' +puma (3.12.0) lib/puma/server.rb:332:in `block in run' +puma (3.12.0) lib/puma/thread_pool.rb:133:in `block in spawn_thread' +Started GET "/home.html" for 127.0.0.1 at 2018-11-04 22:15:56 -0800 + +ActionController::RoutingError (No route matches [GET] "/home.html"): + +actionpack (5.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:65:in `call' +web-console (3.7.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.7.0) lib/web_console/middleware.rb:30:in `block in call' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `catch' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call' +railties (5.2.1) lib/rails/rack/logger.rb:38:in `call_app' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `block in call' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `block in tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:28:in `tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `tagged' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/remote_ip.rb:81:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/request_id.rb:27:in `call' +rack (2.0.5) lib/rack/method_override.rb:22:in `call' +rack (2.0.5) lib/rack/runtime.rb:22:in `call' +activesupport (5.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/executor.rb:14:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/static.rb:127:in `call' +rack (2.0.5) lib/rack/sendfile.rb:111:in `call' +railties (5.2.1) lib/rails/engine.rb:524:in `call' +puma (3.12.0) lib/puma/configuration.rb:225:in `call' +puma (3.12.0) lib/puma/server.rb:658:in `handle_request' +puma (3.12.0) lib/puma/server.rb:472:in `process_client' +puma (3.12.0) lib/puma/server.rb:332:in `block in run' +puma (3.12.0) lib/puma/thread_pool.rb:133:in `block in spawn_thread' +Started GET "/home.html" for 127.0.0.1 at 2018-11-04 22:16:00 -0800 + +ActionController::RoutingError (No route matches [GET] "/home.html"): + +actionpack (5.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:65:in `call' +web-console (3.7.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.7.0) lib/web_console/middleware.rb:30:in `block in call' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `catch' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call' +railties (5.2.1) lib/rails/rack/logger.rb:38:in `call_app' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `block in call' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `block in tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:28:in `tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `tagged' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/remote_ip.rb:81:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/request_id.rb:27:in `call' +rack (2.0.5) lib/rack/method_override.rb:22:in `call' +rack (2.0.5) lib/rack/runtime.rb:22:in `call' +activesupport (5.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/executor.rb:14:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/static.rb:127:in `call' +rack (2.0.5) lib/rack/sendfile.rb:111:in `call' +railties (5.2.1) lib/rails/engine.rb:524:in `call' +puma (3.12.0) lib/puma/configuration.rb:225:in `call' +puma (3.12.0) lib/puma/server.rb:658:in `handle_request' +puma (3.12.0) lib/puma/server.rb:472:in `process_client' +puma (3.12.0) lib/puma/server.rb:332:in `block in run' +puma (3.12.0) lib/puma/thread_pool.rb:133:in `block in spawn_thread' +Started GET "/home.html" for 127.0.0.1 at 2018-11-04 22:16:05 -0800 + +ActionController::RoutingError (No route matches [GET] "/home.html"): + +actionpack (5.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:65:in `call' +web-console (3.7.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.7.0) lib/web_console/middleware.rb:30:in `block in call' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `catch' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call' +railties (5.2.1) lib/rails/rack/logger.rb:38:in `call_app' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `block in call' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `block in tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:28:in `tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `tagged' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/remote_ip.rb:81:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/request_id.rb:27:in `call' +rack (2.0.5) lib/rack/method_override.rb:22:in `call' +rack (2.0.5) lib/rack/runtime.rb:22:in `call' +activesupport (5.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/executor.rb:14:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/static.rb:127:in `call' +rack (2.0.5) lib/rack/sendfile.rb:111:in `call' +railties (5.2.1) lib/rails/engine.rb:524:in `call' +puma (3.12.0) lib/puma/configuration.rb:225:in `call' +puma (3.12.0) lib/puma/server.rb:658:in `handle_request' +puma (3.12.0) lib/puma/server.rb:472:in `process_client' +puma (3.12.0) lib/puma/server.rb:332:in `block in run' +puma (3.12.0) lib/puma/thread_pool.rb:133:in `block in spawn_thread' +Started GET "/home.html" for 127.0.0.1 at 2018-11-04 22:18:35 -0800 + +ActionController::RoutingError (No route matches [GET] "/home.html"): + +actionpack (5.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:65:in `call' +web-console (3.7.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.7.0) lib/web_console/middleware.rb:30:in `block in call' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `catch' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call' +railties (5.2.1) lib/rails/rack/logger.rb:38:in `call_app' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `block in call' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `block in tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:28:in `tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `tagged' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/remote_ip.rb:81:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/request_id.rb:27:in `call' +rack (2.0.5) lib/rack/method_override.rb:22:in `call' +rack (2.0.5) lib/rack/runtime.rb:22:in `call' +activesupport (5.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/executor.rb:14:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/static.rb:127:in `call' +rack (2.0.5) lib/rack/sendfile.rb:111:in `call' +railties (5.2.1) lib/rails/engine.rb:524:in `call' +puma (3.12.0) lib/puma/configuration.rb:225:in `call' +puma (3.12.0) lib/puma/server.rb:658:in `handle_request' +puma (3.12.0) lib/puma/server.rb:472:in `process_client' +puma (3.12.0) lib/puma/server.rb:332:in `block in run' +puma (3.12.0) lib/puma/thread_pool.rb:133:in `block in spawn_thread' +Started GET "/home.html" for 127.0.0.1 at 2018-11-04 22:18:37 -0800 + +ActionController::RoutingError (No route matches [GET] "/home.html"): + +actionpack (5.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:65:in `call' +web-console (3.7.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.7.0) lib/web_console/middleware.rb:30:in `block in call' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `catch' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call' +railties (5.2.1) lib/rails/rack/logger.rb:38:in `call_app' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `block in call' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `block in tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:28:in `tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `tagged' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/remote_ip.rb:81:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/request_id.rb:27:in `call' +rack (2.0.5) lib/rack/method_override.rb:22:in `call' +rack (2.0.5) lib/rack/runtime.rb:22:in `call' +activesupport (5.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/executor.rb:14:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/static.rb:127:in `call' +rack (2.0.5) lib/rack/sendfile.rb:111:in `call' +railties (5.2.1) lib/rails/engine.rb:524:in `call' +puma (3.12.0) lib/puma/configuration.rb:225:in `call' +puma (3.12.0) lib/puma/server.rb:658:in `handle_request' +puma (3.12.0) lib/puma/server.rb:472:in `process_client' +puma (3.12.0) lib/puma/server.rb:332:in `block in run' +puma (3.12.0) lib/puma/thread_pool.rb:133:in `block in spawn_thread' +Started GET "/home.html" for 127.0.0.1 at 2018-11-04 22:24:37 -0800 + +ActionController::RoutingError (No route matches [GET] "/home.html"): + +actionpack (5.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:65:in `call' +web-console (3.7.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.7.0) lib/web_console/middleware.rb:30:in `block in call' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `catch' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call' +railties (5.2.1) lib/rails/rack/logger.rb:38:in `call_app' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `block in call' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `block in tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:28:in `tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `tagged' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/remote_ip.rb:81:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/request_id.rb:27:in `call' +rack (2.0.5) lib/rack/method_override.rb:22:in `call' +rack (2.0.5) lib/rack/runtime.rb:22:in `call' +activesupport (5.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/executor.rb:14:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/static.rb:127:in `call' +rack (2.0.5) lib/rack/sendfile.rb:111:in `call' +railties (5.2.1) lib/rails/engine.rb:524:in `call' +puma (3.12.0) lib/puma/configuration.rb:225:in `call' +puma (3.12.0) lib/puma/server.rb:658:in `handle_request' +puma (3.12.0) lib/puma/server.rb:472:in `process_client' +puma (3.12.0) lib/puma/server.rb:332:in `block in run' +puma (3.12.0) lib/puma/thread_pool.rb:133:in `block in spawn_thread' +Started GET "/home.html" for 127.0.0.1 at 2018-11-04 22:24:40 -0800 + +ActionController::RoutingError (No route matches [GET] "/home.html"): + +actionpack (5.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:65:in `call' +web-console (3.7.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.7.0) lib/web_console/middleware.rb:30:in `block in call' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `catch' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call' +railties (5.2.1) lib/rails/rack/logger.rb:38:in `call_app' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `block in call' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `block in tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:28:in `tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `tagged' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/remote_ip.rb:81:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/request_id.rb:27:in `call' +rack (2.0.5) lib/rack/method_override.rb:22:in `call' +rack (2.0.5) lib/rack/runtime.rb:22:in `call' +activesupport (5.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/executor.rb:14:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/static.rb:127:in `call' +rack (2.0.5) lib/rack/sendfile.rb:111:in `call' +railties (5.2.1) lib/rails/engine.rb:524:in `call' +puma (3.12.0) lib/puma/configuration.rb:225:in `call' +puma (3.12.0) lib/puma/server.rb:658:in `handle_request' +puma (3.12.0) lib/puma/server.rb:472:in `process_client' +puma (3.12.0) lib/puma/server.rb:332:in `block in run' +puma (3.12.0) lib/puma/thread_pool.rb:133:in `block in spawn_thread' +Started GET "/home.html" for 127.0.0.1 at 2018-11-04 22:25:25 -0800 + +ActionController::RoutingError (No route matches [GET] "/home.html"): + +actionpack (5.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:65:in `call' +web-console (3.7.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.7.0) lib/web_console/middleware.rb:30:in `block in call' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `catch' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call' +railties (5.2.1) lib/rails/rack/logger.rb:38:in `call_app' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `block in call' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `block in tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:28:in `tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `tagged' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/remote_ip.rb:81:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/request_id.rb:27:in `call' +rack (2.0.5) lib/rack/method_override.rb:22:in `call' +rack (2.0.5) lib/rack/runtime.rb:22:in `call' +activesupport (5.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/executor.rb:14:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/static.rb:127:in `call' +rack (2.0.5) lib/rack/sendfile.rb:111:in `call' +railties (5.2.1) lib/rails/engine.rb:524:in `call' +puma (3.12.0) lib/puma/configuration.rb:225:in `call' +puma (3.12.0) lib/puma/server.rb:658:in `handle_request' +puma (3.12.0) lib/puma/server.rb:472:in `process_client' +puma (3.12.0) lib/puma/server.rb:332:in `block in run' +puma (3.12.0) lib/puma/thread_pool.rb:133:in `block in spawn_thread' +Started GET "/home.html" for 127.0.0.1 at 2018-11-04 22:25:26 -0800 + +ActionController::RoutingError (No route matches [GET] "/home.html"): + +actionpack (5.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:65:in `call' +web-console (3.7.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.7.0) lib/web_console/middleware.rb:30:in `block in call' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `catch' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call' +railties (5.2.1) lib/rails/rack/logger.rb:38:in `call_app' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `block in call' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `block in tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:28:in `tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `tagged' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/remote_ip.rb:81:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/request_id.rb:27:in `call' +rack (2.0.5) lib/rack/method_override.rb:22:in `call' +rack (2.0.5) lib/rack/runtime.rb:22:in `call' +activesupport (5.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/executor.rb:14:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/static.rb:127:in `call' +rack (2.0.5) lib/rack/sendfile.rb:111:in `call' +railties (5.2.1) lib/rails/engine.rb:524:in `call' +puma (3.12.0) lib/puma/configuration.rb:225:in `call' +puma (3.12.0) lib/puma/server.rb:658:in `handle_request' +puma (3.12.0) lib/puma/server.rb:472:in `process_client' +puma (3.12.0) lib/puma/server.rb:332:in `block in run' +puma (3.12.0) lib/puma/thread_pool.rb:133:in `block in spawn_thread' +Started GET "/home.html" for 127.0.0.1 at 2018-11-04 22:25:27 -0800 + +ActionController::RoutingError (No route matches [GET] "/home.html"): + +actionpack (5.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:65:in `call' +web-console (3.7.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.7.0) lib/web_console/middleware.rb:30:in `block in call' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `catch' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call' +railties (5.2.1) lib/rails/rack/logger.rb:38:in `call_app' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `block in call' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `block in tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:28:in `tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `tagged' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/remote_ip.rb:81:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/request_id.rb:27:in `call' +rack (2.0.5) lib/rack/method_override.rb:22:in `call' +rack (2.0.5) lib/rack/runtime.rb:22:in `call' +activesupport (5.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/executor.rb:14:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/static.rb:127:in `call' +rack (2.0.5) lib/rack/sendfile.rb:111:in `call' +railties (5.2.1) lib/rails/engine.rb:524:in `call' +puma (3.12.0) lib/puma/configuration.rb:225:in `call' +puma (3.12.0) lib/puma/server.rb:658:in `handle_request' +puma (3.12.0) lib/puma/server.rb:472:in `process_client' +puma (3.12.0) lib/puma/server.rb:332:in `block in run' +puma (3.12.0) lib/puma/thread_pool.rb:133:in `block in spawn_thread' +Started GET "/home.html" for 127.0.0.1 at 2018-11-04 22:28:00 -0800 + +ActionController::RoutingError (No route matches [GET] "/home.html"): + +actionpack (5.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:65:in `call' +web-console (3.7.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.7.0) lib/web_console/middleware.rb:30:in `block in call' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `catch' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call' +railties (5.2.1) lib/rails/rack/logger.rb:38:in `call_app' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `block in call' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `block in tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:28:in `tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `tagged' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/remote_ip.rb:81:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/request_id.rb:27:in `call' +rack (2.0.5) lib/rack/method_override.rb:22:in `call' +rack (2.0.5) lib/rack/runtime.rb:22:in `call' +activesupport (5.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/executor.rb:14:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/static.rb:127:in `call' +rack (2.0.5) lib/rack/sendfile.rb:111:in `call' +railties (5.2.1) lib/rails/engine.rb:524:in `call' +puma (3.12.0) lib/puma/configuration.rb:225:in `call' +puma (3.12.0) lib/puma/server.rb:658:in `handle_request' +puma (3.12.0) lib/puma/server.rb:472:in `process_client' +puma (3.12.0) lib/puma/server.rb:332:in `block in run' +puma (3.12.0) lib/puma/thread_pool.rb:133:in `block in spawn_thread' +Started GET "/home.html" for 127.0.0.1 at 2018-11-04 22:29:57 -0800 + +ActionController::RoutingError (No route matches [GET] "/home.html"): + +actionpack (5.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:65:in `call' +web-console (3.7.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.7.0) lib/web_console/middleware.rb:30:in `block in call' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `catch' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call' +railties (5.2.1) lib/rails/rack/logger.rb:38:in `call_app' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `block in call' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `block in tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:28:in `tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `tagged' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/remote_ip.rb:81:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/request_id.rb:27:in `call' +rack (2.0.5) lib/rack/method_override.rb:22:in `call' +rack (2.0.5) lib/rack/runtime.rb:22:in `call' +activesupport (5.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/executor.rb:14:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/static.rb:127:in `call' +rack (2.0.5) lib/rack/sendfile.rb:111:in `call' +railties (5.2.1) lib/rails/engine.rb:524:in `call' +puma (3.12.0) lib/puma/configuration.rb:225:in `call' +puma (3.12.0) lib/puma/server.rb:658:in `handle_request' +puma (3.12.0) lib/puma/server.rb:472:in `process_client' +puma (3.12.0) lib/puma/server.rb:332:in `block in run' +puma (3.12.0) lib/puma/thread_pool.rb:133:in `block in spawn_thread' +Started GET "/home.html" for 127.0.0.1 at 2018-11-04 22:29:58 -0800 + +ActionController::RoutingError (No route matches [GET] "/home.html"): + +actionpack (5.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:65:in `call' +web-console (3.7.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.7.0) lib/web_console/middleware.rb:30:in `block in call' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `catch' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call' +railties (5.2.1) lib/rails/rack/logger.rb:38:in `call_app' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `block in call' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `block in tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:28:in `tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `tagged' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/remote_ip.rb:81:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/request_id.rb:27:in `call' +rack (2.0.5) lib/rack/method_override.rb:22:in `call' +rack (2.0.5) lib/rack/runtime.rb:22:in `call' +activesupport (5.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/executor.rb:14:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/static.rb:127:in `call' +rack (2.0.5) lib/rack/sendfile.rb:111:in `call' +railties (5.2.1) lib/rails/engine.rb:524:in `call' +puma (3.12.0) lib/puma/configuration.rb:225:in `call' +puma (3.12.0) lib/puma/server.rb:658:in `handle_request' +puma (3.12.0) lib/puma/server.rb:472:in `process_client' +puma (3.12.0) lib/puma/server.rb:332:in `block in run' +puma (3.12.0) lib/puma/thread_pool.rb:133:in `block in spawn_thread' +Started GET "/home.html" for 127.0.0.1 at 2018-11-04 22:30:21 -0800 + +ActionController::RoutingError (No route matches [GET] "/home.html"): + +actionpack (5.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:65:in `call' +web-console (3.7.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.7.0) lib/web_console/middleware.rb:30:in `block in call' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `catch' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call' +railties (5.2.1) lib/rails/rack/logger.rb:38:in `call_app' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `block in call' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `block in tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:28:in `tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `tagged' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/remote_ip.rb:81:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/request_id.rb:27:in `call' +rack (2.0.5) lib/rack/method_override.rb:22:in `call' +rack (2.0.5) lib/rack/runtime.rb:22:in `call' +activesupport (5.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/executor.rb:14:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/static.rb:127:in `call' +rack (2.0.5) lib/rack/sendfile.rb:111:in `call' +railties (5.2.1) lib/rails/engine.rb:524:in `call' +puma (3.12.0) lib/puma/configuration.rb:225:in `call' +puma (3.12.0) lib/puma/server.rb:658:in `handle_request' +puma (3.12.0) lib/puma/server.rb:472:in `process_client' +puma (3.12.0) lib/puma/server.rb:332:in `block in run' +puma (3.12.0) lib/puma/thread_pool.rb:133:in `block in spawn_thread' +Started GET "/home.html" for 127.0.0.1 at 2018-11-04 22:30:40 -0800 + +ActionController::RoutingError (No route matches [GET] "/home.html"): + +actionpack (5.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:65:in `call' +web-console (3.7.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.7.0) lib/web_console/middleware.rb:30:in `block in call' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `catch' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call' +railties (5.2.1) lib/rails/rack/logger.rb:38:in `call_app' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `block in call' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `block in tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:28:in `tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `tagged' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/remote_ip.rb:81:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/request_id.rb:27:in `call' +rack (2.0.5) lib/rack/method_override.rb:22:in `call' +rack (2.0.5) lib/rack/runtime.rb:22:in `call' +activesupport (5.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/executor.rb:14:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/static.rb:127:in `call' +rack (2.0.5) lib/rack/sendfile.rb:111:in `call' +railties (5.2.1) lib/rails/engine.rb:524:in `call' +puma (3.12.0) lib/puma/configuration.rb:225:in `call' +puma (3.12.0) lib/puma/server.rb:658:in `handle_request' +puma (3.12.0) lib/puma/server.rb:472:in `process_client' +puma (3.12.0) lib/puma/server.rb:332:in `block in run' +puma (3.12.0) lib/puma/thread_pool.rb:133:in `block in spawn_thread' +Started GET "/home.html" for 127.0.0.1 at 2018-11-04 22:30:44 -0800 + +ActionController::RoutingError (No route matches [GET] "/home.html"): + +actionpack (5.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:65:in `call' +web-console (3.7.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.7.0) lib/web_console/middleware.rb:30:in `block in call' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `catch' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call' +railties (5.2.1) lib/rails/rack/logger.rb:38:in `call_app' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `block in call' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `block in tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:28:in `tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `tagged' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/remote_ip.rb:81:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/request_id.rb:27:in `call' +rack (2.0.5) lib/rack/method_override.rb:22:in `call' +rack (2.0.5) lib/rack/runtime.rb:22:in `call' +activesupport (5.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/executor.rb:14:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/static.rb:127:in `call' +rack (2.0.5) lib/rack/sendfile.rb:111:in `call' +railties (5.2.1) lib/rails/engine.rb:524:in `call' +puma (3.12.0) lib/puma/configuration.rb:225:in `call' +puma (3.12.0) lib/puma/server.rb:658:in `handle_request' +puma (3.12.0) lib/puma/server.rb:472:in `process_client' +puma (3.12.0) lib/puma/server.rb:332:in `block in run' +puma (3.12.0) lib/puma/thread_pool.rb:133:in `block in spawn_thread' +Started GET "/home.html" for 127.0.0.1 at 2018-11-04 22:31:05 -0800 + +ActionController::RoutingError (No route matches [GET] "/home.html"): + +actionpack (5.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:65:in `call' +web-console (3.7.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.7.0) lib/web_console/middleware.rb:30:in `block in call' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `catch' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call' +railties (5.2.1) lib/rails/rack/logger.rb:38:in `call_app' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `block in call' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `block in tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:28:in `tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `tagged' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/remote_ip.rb:81:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/request_id.rb:27:in `call' +rack (2.0.5) lib/rack/method_override.rb:22:in `call' +rack (2.0.5) lib/rack/runtime.rb:22:in `call' +activesupport (5.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/executor.rb:14:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/static.rb:127:in `call' +rack (2.0.5) lib/rack/sendfile.rb:111:in `call' +railties (5.2.1) lib/rails/engine.rb:524:in `call' +puma (3.12.0) lib/puma/configuration.rb:225:in `call' +puma (3.12.0) lib/puma/server.rb:658:in `handle_request' +puma (3.12.0) lib/puma/server.rb:472:in `process_client' +puma (3.12.0) lib/puma/server.rb:332:in `block in run' +puma (3.12.0) lib/puma/thread_pool.rb:133:in `block in spawn_thread' +Started GET "/home.html" for 127.0.0.1 at 2018-11-04 22:31:40 -0800 + +ActionController::RoutingError (No route matches [GET] "/home.html"): + +actionpack (5.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:65:in `call' +web-console (3.7.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.7.0) lib/web_console/middleware.rb:30:in `block in call' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `catch' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call' +railties (5.2.1) lib/rails/rack/logger.rb:38:in `call_app' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `block in call' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `block in tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:28:in `tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `tagged' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/remote_ip.rb:81:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/request_id.rb:27:in `call' +rack (2.0.5) lib/rack/method_override.rb:22:in `call' +rack (2.0.5) lib/rack/runtime.rb:22:in `call' +activesupport (5.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/executor.rb:14:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/static.rb:127:in `call' +rack (2.0.5) lib/rack/sendfile.rb:111:in `call' +railties (5.2.1) lib/rails/engine.rb:524:in `call' +puma (3.12.0) lib/puma/configuration.rb:225:in `call' +puma (3.12.0) lib/puma/server.rb:658:in `handle_request' +puma (3.12.0) lib/puma/server.rb:472:in `process_client' +puma (3.12.0) lib/puma/server.rb:332:in `block in run' +puma (3.12.0) lib/puma/thread_pool.rb:133:in `block in spawn_thread' +Started GET "/home.html" for 127.0.0.1 at 2018-11-04 22:31:44 -0800 + +ActionController::RoutingError (No route matches [GET] "/home.html"): + +actionpack (5.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:65:in `call' +web-console (3.7.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.7.0) lib/web_console/middleware.rb:30:in `block in call' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `catch' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call' +railties (5.2.1) lib/rails/rack/logger.rb:38:in `call_app' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `block in call' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `block in tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:28:in `tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `tagged' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/remote_ip.rb:81:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/request_id.rb:27:in `call' +rack (2.0.5) lib/rack/method_override.rb:22:in `call' +rack (2.0.5) lib/rack/runtime.rb:22:in `call' +activesupport (5.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/executor.rb:14:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/static.rb:127:in `call' +rack (2.0.5) lib/rack/sendfile.rb:111:in `call' +railties (5.2.1) lib/rails/engine.rb:524:in `call' +puma (3.12.0) lib/puma/configuration.rb:225:in `call' +puma (3.12.0) lib/puma/server.rb:658:in `handle_request' +puma (3.12.0) lib/puma/server.rb:472:in `process_client' +puma (3.12.0) lib/puma/server.rb:332:in `block in run' +puma (3.12.0) lib/puma/thread_pool.rb:133:in `block in spawn_thread' +Started GET "/home.html" for 127.0.0.1 at 2018-11-04 22:31:48 -0800 + +ActionController::RoutingError (No route matches [GET] "/home.html"): + +actionpack (5.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:65:in `call' +web-console (3.7.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.7.0) lib/web_console/middleware.rb:30:in `block in call' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `catch' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call' +railties (5.2.1) lib/rails/rack/logger.rb:38:in `call_app' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `block in call' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `block in tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:28:in `tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `tagged' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/remote_ip.rb:81:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/request_id.rb:27:in `call' +rack (2.0.5) lib/rack/method_override.rb:22:in `call' +rack (2.0.5) lib/rack/runtime.rb:22:in `call' +activesupport (5.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/executor.rb:14:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/static.rb:127:in `call' +rack (2.0.5) lib/rack/sendfile.rb:111:in `call' +railties (5.2.1) lib/rails/engine.rb:524:in `call' +puma (3.12.0) lib/puma/configuration.rb:225:in `call' +puma (3.12.0) lib/puma/server.rb:658:in `handle_request' +puma (3.12.0) lib/puma/server.rb:472:in `process_client' +puma (3.12.0) lib/puma/server.rb:332:in `block in run' +puma (3.12.0) lib/puma/thread_pool.rb:133:in `block in spawn_thread' +Started GET "/home.html" for 127.0.0.1 at 2018-11-04 22:32:19 -0800 + +ActionController::RoutingError (No route matches [GET] "/home.html"): + +actionpack (5.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:65:in `call' +web-console (3.7.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.7.0) lib/web_console/middleware.rb:30:in `block in call' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `catch' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call' +railties (5.2.1) lib/rails/rack/logger.rb:38:in `call_app' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `block in call' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `block in tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:28:in `tagged' +activesupport (5.2.1) lib/active_support/tagged_logging.rb:71:in `tagged' +railties (5.2.1) lib/rails/rack/logger.rb:26:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/remote_ip.rb:81:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/request_id.rb:27:in `call' +rack (2.0.5) lib/rack/method_override.rb:22:in `call' +rack (2.0.5) lib/rack/runtime.rb:22:in `call' +activesupport (5.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/executor.rb:14:in `call' +actionpack (5.2.1) lib/action_dispatch/middleware/static.rb:127:in `call' +rack (2.0.5) lib/rack/sendfile.rb:111:in `call' +railties (5.2.1) lib/rails/engine.rb:524:in `call' +puma (3.12.0) lib/puma/configuration.rb:225:in `call' +puma (3.12.0) lib/puma/server.rb:658:in `handle_request' +puma (3.12.0) lib/puma/server.rb:472:in `process_client' +puma (3.12.0) lib/puma/server.rb:332:in `block in run' +puma (3.12.0) lib/puma/thread_pool.rb:133:in `block in spawn_thread' +Started GET "/" for 127.0.0.1 at 2018-11-04 22:32:31 -0800 +Processing by HomepageController#index as HTML + Rendering homepage/index.html.erb within layouts/application + Rendered homepage/index.html.erb within layouts/application (0.6ms) +Completed 200 OK in 18ms (Views: 15.3ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 127.0.0.1 at 2018-11-04 22:32:33 -0800 +Processing by HomepageController#index as HTML + Rendering homepage/index.html.erb within layouts/application + Rendered homepage/index.html.erb within layouts/application (0.6ms) +Completed 200 OK in 19ms (Views: 16.3ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 127.0.0.1 at 2018-11-04 22:32:34 -0800 +Processing by HomepageController#index as HTML + Rendering homepage/index.html.erb within layouts/application + Rendered homepage/index.html.erb within layouts/application (0.6ms) +Completed 200 OK in 18ms (Views: 15.8ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 127.0.0.1 at 2018-11-04 22:32:35 -0800 +Processing by HomepageController#index as HTML + Rendering homepage/index.html.erb within layouts/application + Rendered homepage/index.html.erb within layouts/application (0.5ms) +Completed 200 OK in 17ms (Views: 14.6ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 127.0.0.1 at 2018-11-04 22:32:36 -0800 +Processing by HomepageController#index as HTML + Rendering homepage/index.html.erb within layouts/application + Rendered homepage/index.html.erb within layouts/application (0.6ms) +Completed 200 OK in 18ms (Views: 15.8ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 127.0.0.1 at 2018-11-04 22:32:38 -0800 +Processing by HomepageController#index as HTML + Rendering homepage/index.html.erb within layouts/application + Rendered homepage/index.html.erb within layouts/application (0.6ms) +Completed 200 OK in 18ms (Views: 15.3ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 127.0.0.1 at 2018-11-04 22:32:39 -0800 +Processing by HomepageController#index as HTML + Rendering homepage/index.html.erb within layouts/application + Rendered homepage/index.html.erb within layouts/application (0.6ms) +Completed 200 OK in 18ms (Views: 15.5ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=beef&commit=Search" for 127.0.0.1 at 2018-11-04 22:32:48 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"beef", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (2.3ms) +Completed 200 OK in 1852ms (Views: 14.6ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 127.0.0.1 at 2018-11-04 22:32:57 -0800 +Processing by HomepageController#index as HTML + Rendering homepage/index.html.erb within layouts/application + Rendered homepage/index.html.erb within layouts/application (0.6ms) +Completed 200 OK in 18ms (Views: 16.2ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 127.0.0.1 at 2018-11-04 22:32:58 -0800 +Processing by HomepageController#index as HTML + Rendering homepage/index.html.erb within layouts/application + Rendered homepage/index.html.erb within layouts/application (0.5ms) +Completed 200 OK in 17ms (Views: 14.6ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=beef&commit=Search" for 127.0.0.1 at 2018-11-04 22:33:02 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"beef", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 2215ms (Views: 14.8ms | ActiveRecord: 0.0ms) + + +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_3921adf30bb0c9736b9ac30f447f8a63" for 127.0.0.1 at 2018-11-04 22:33:06 -0800 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_3921adf30bb0c9736b9ac30f447f8a63"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (0.6ms) +Completed 200 OK in 1013ms (Views: 15.9ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 127.0.0.1 at 2018-11-04 22:33:14 -0800 +Processing by HomepageController#index as HTML + Rendering homepage/index.html.erb within layouts/application + Rendered homepage/index.html.erb within layouts/application (0.6ms) +Completed 200 OK in 22ms (Views: 20.0ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 127.0.0.1 at 2018-11-04 22:33:16 -0800 +Processing by HomepageController#index as HTML + Rendering homepage/index.html.erb within layouts/application + Rendered homepage/index.html.erb within layouts/application (0.6ms) +Completed 200 OK in 18ms (Views: 16.1ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 127.0.0.1 at 2018-11-04 22:34:06 -0800 +Processing by HomepageController#index as HTML + Rendering homepage/index.html.erb within layouts/application + Rendered homepage/index.html.erb within layouts/application (0.6ms) +Completed 200 OK in 18ms (Views: 15.5ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 127.0.0.1 at 2018-11-04 23:10:58 -0800 +Processing by HomepageController#index as HTML + Rendering homepage/index.html.erb within layouts/application + Rendered homepage/index.html.erb within layouts/application (0.6ms) +Completed 200 OK in 1445ms (Views: 1442.7ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 127.0.0.1 at 2018-11-04 23:11:02 -0800 +Processing by HomepageController#index as HTML + Rendering homepage/index.html.erb within layouts/application + Rendered homepage/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 18ms (Views: 15.8ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 127.0.0.1 at 2018-11-04 23:11:07 -0800 +Processing by HomepageController#index as HTML + Rendering homepage/index.html.erb within layouts/application + Rendered homepage/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 21ms (Views: 18.5ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=beef&commit=Search" for 127.0.0.1 at 2018-11-04 23:11:11 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"beef", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (3.7ms) +Completed 200 OK in 2105ms (Views: 17.9ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=beef&commit=Search" for 127.0.0.1 at 2018-11-04 23:12:04 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"beef", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (2.4ms) +Completed 500 Internal Server Error in 2347ms (ActiveRecord: 0.0ms) + + + +Sass::SyntaxError - Invalid CSS after " }": expected selector or at-rule, was "}": + app/views/layouts/application.html.erb:8:in `_app_views_layouts_application_html_erb__4128253184315918423_70149166801400' + +Started POST "/__better_errors/291802a37a550e69/variables" for 127.0.0.1 at 2018-11-04 23:12:06 -0800 +Started GET "/search?utf8=%E2%9C%93&q=beef&commit=Search" for 127.0.0.1 at 2018-11-04 23:13:05 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"beef", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (2.1ms) +Completed 200 OK in 3125ms (Views: 1371.6ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=beef&commit=Search" for 127.0.0.1 at 2018-11-04 23:13:48 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"beef", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (2.7ms) +Completed 500 Internal Server Error in 1838ms (ActiveRecord: 0.0ms) + + + +Sass::SyntaxError - Invalid CSS after " }": expected selector or at-rule, was "}": + app/views/layouts/application.html.erb:8:in `_app_views_layouts_application_html_erb__4128253184315918423_70149109752220' + +Started POST "/__better_errors/9d0924bca7baab9c/variables" for 127.0.0.1 at 2018-11-04 23:13:50 -0800 +Started GET "/search?utf8=%E2%9C%93&q=beef&commit=Search" for 127.0.0.1 at 2018-11-04 23:14:40 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"beef", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (2.1ms) +Completed 500 Internal Server Error in 1820ms (ActiveRecord: 0.0ms) + + + +Sass::SyntaxError - Invalid CSS after " }": expected selector or at-rule, was "}": + app/views/layouts/application.html.erb:8:in `_app_views_layouts_application_html_erb__4128253184315918423_70149162253800' + +Started POST "/__better_errors/2d5dbf990e6a1c3d/variables" for 127.0.0.1 at 2018-11-04 23:14:41 -0800 +Started GET "/search?utf8=%E2%9C%93&q=beef&commit=Search" for 127.0.0.1 at 2018-11-04 23:16:03 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"beef", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (2.3ms) +Completed 200 OK in 3811ms (Views: 1548.5ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 127.0.0.1 at 2018-11-04 23:16:20 -0800 +Processing by HomepageController#index as HTML + Rendering homepage/index.html.erb within layouts/application + Rendered homepage/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 20ms (Views: 17.2ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 127.0.0.1 at 2018-11-04 23:16:38 -0800 +Processing by HomepageController#index as HTML + Rendering homepage/index.html.erb within layouts/application + Rendered homepage/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 22ms (Views: 19.8ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 127.0.0.1 at 2018-11-04 23:17:00 -0800 +Processing by HomepageController#index as HTML + Rendering homepage/index.html.erb within layouts/application + Rendered homepage/index.html.erb within layouts/application (0.7ms) +Completed 200 OK in 1515ms (Views: 1512.5ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 127.0.0.1 at 2018-11-04 23:17:25 -0800 +Processing by HomepageController#index as HTML + Rendering homepage/index.html.erb within layouts/application + Rendered homepage/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 1453ms (Views: 1450.3ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 127.0.0.1 at 2018-11-04 23:17:36 -0800 +Processing by HomepageController#index as HTML + Rendering homepage/index.html.erb within layouts/application + Rendered homepage/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 1533ms (Views: 1530.3ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 127.0.0.1 at 2018-11-04 23:17:52 -0800 +Processing by HomepageController#index as HTML + Rendering homepage/index.html.erb within layouts/application + Rendered homepage/index.html.erb within layouts/application (1.1ms) +Completed 200 OK in 1422ms (Views: 1419.0ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 127.0.0.1 at 2018-11-04 23:18:02 -0800 +Processing by HomepageController#index as HTML + Rendering homepage/index.html.erb within layouts/application + Rendered homepage/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 1527ms (Views: 1523.4ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 127.0.0.1 at 2018-11-04 23:18:37 -0800 +Processing by HomepageController#index as HTML + Rendering homepage/index.html.erb within layouts/application + Rendered homepage/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 1433ms (Views: 1430.0ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=beef&commit=Search" for 127.0.0.1 at 2018-11-04 23:18:54 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"beef", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 3472ms (Views: 14.7ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 127.0.0.1 at 2018-11-04 23:20:34 -0800 +Processing by HomepageController#index as HTML + Rendering homepage/index.html.erb within layouts/application + Rendered homepage/index.html.erb within layouts/application (0.6ms) +Completed 200 OK in 19ms (Views: 16.5ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 127.0.0.1 at 2018-11-04 23:20:36 -0800 +Processing by HomepageController#index as HTML + Rendering homepage/index.html.erb within layouts/application + Rendered homepage/index.html.erb within layouts/application (0.6ms) +Completed 200 OK in 18ms (Views: 15.2ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 127.0.0.1 at 2018-11-04 23:23:07 -0800 +Processing by HomepageController#index as HTML + Rendering homepage/index.html.erb within layouts/application + Rendered homepage/index.html.erb within layouts/application (0.6ms) +Completed 500 Internal Server Error in 33ms (ActiveRecord: 0.0ms) + + + +Sass::SyntaxError - wrong number of arguments (3 for 4) for `rgba': + app/views/layouts/application.html.erb:8:in `_app_views_layouts_application_html_erb__4128253184315918423_70149095566260' + +Started POST "/__better_errors/45a8855253fd5209/variables" for 127.0.0.1 at 2018-11-04 23:23:07 -0800 +Started GET "/" for 127.0.0.1 at 2018-11-04 23:23:21 -0800 +Processing by HomepageController#index as HTML + Rendering homepage/index.html.erb within layouts/application + Rendered homepage/index.html.erb within layouts/application (0.6ms) +Completed 500 Internal Server Error in 37ms (ActiveRecord: 0.0ms) + + + +Sass::SyntaxError - wrong number of arguments (3 for 4) for `rgba': + app/views/layouts/application.html.erb:8:in `_app_views_layouts_application_html_erb__4128253184315918423_70149162230360' + +Started POST "/__better_errors/fd63b54f96bc9ceb/variables" for 127.0.0.1 at 2018-11-04 23:23:21 -0800 +Started GET "/" for 127.0.0.1 at 2018-11-04 23:23:23 -0800 +Processing by HomepageController#index as HTML + Rendering homepage/index.html.erb within layouts/application + Rendered homepage/index.html.erb within layouts/application (0.6ms) +Completed 500 Internal Server Error in 19ms (ActiveRecord: 0.0ms) + + + +Sass::SyntaxError - wrong number of arguments (3 for 4) for `rgba': + app/views/layouts/application.html.erb:8:in `_app_views_layouts_application_html_erb__4128253184315918423_70149161758040' + +Started POST "/__better_errors/7d74e44ba54b6943/variables" for 127.0.0.1 at 2018-11-04 23:23:23 -0800 +Started GET "/" for 127.0.0.1 at 2018-11-04 23:23:32 -0800 +Processing by HomepageController#index as HTML + Rendering homepage/index.html.erb within layouts/application + Rendered homepage/index.html.erb within layouts/application (0.5ms) +Completed 200 OK in 1454ms (Views: 1452.3ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=beef&commit=Search" for 127.0.0.1 at 2018-11-04 23:24:05 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"beef", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 1981ms (Views: 14.9ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=beef&commit=Search" for 127.0.0.1 at 2018-11-04 23:25:32 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"beef", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 3333ms (Views: 1408.0ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 127.0.0.1 at 2018-11-04 23:25:42 -0800 +Processing by HomepageController#index as HTML + Rendering homepage/index.html.erb within layouts/application + Rendered homepage/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 20ms (Views: 17.0ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=eggs&commit=Search" for 127.0.0.1 at 2018-11-04 23:28:28 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"eggs", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 2634ms (Views: 14.2ms | ActiveRecord: 0.0ms) + + +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_9d74a7986510d0380b3fb47b7b65bf33" for 127.0.0.1 at 2018-11-04 23:28:45 -0800 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_9d74a7986510d0380b3fb47b7b65bf33"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (0.7ms) +Completed 200 OK in 466ms (Views: 15.0ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 127.0.0.1 at 2018-11-04 23:28:58 -0800 +Processing by HomepageController#index as HTML + Rendering homepage/index.html.erb within layouts/application + Rendered homepage/index.html.erb within layouts/application (0.6ms) +Completed 200 OK in 18ms (Views: 15.8ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 127.0.0.1 at 2018-11-05 23:55:02 -0800 +  (1.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC + ↳ /Users/kjfitzpatrick/.rvm/gems/ruby-2.5.1/gems/activerecord-5.2.1/lib/active_record/log_subscriber.rb:98 +Processing by HomepageController#index as HTML + Rendering homepage/index.html.erb within layouts/application + Rendered homepage/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 457ms (Views: 449.6ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=eggs&commit=Search" for 127.0.0.1 at 2018-11-05 23:55:07 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"eggs", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (7.4ms) +Completed 200 OK in 3564ms (Views: 23.5ms | ActiveRecord: 0.0ms) + + +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_9d74a7986510d0380b3fb47b7b65bf33" for 127.0.0.1 at 2018-11-05 23:55:17 -0800 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_9d74a7986510d0380b3fb47b7b65bf33"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (0.9ms) +Completed 200 OK in 623ms (Views: 24.1ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 127.0.0.1 at 2018-11-05 23:55:24 -0800 +Processing by HomepageController#index as HTML + Rendering homepage/index.html.erb within layouts/application + Rendered homepage/index.html.erb within layouts/application (0.5ms) +Completed 200 OK in 23ms (Views: 20.2ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=flan&commit=Search" for 127.0.0.1 at 2018-11-05 23:55:39 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"flan", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (2.2ms) +Completed 200 OK in 1562ms (Views: 13.6ms | ActiveRecord: 0.0ms) + + +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_fd6f5aecc048b627a9bab6f568007504" for 127.0.0.1 at 2018-11-05 23:55:53 -0800 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_fd6f5aecc048b627a9bab6f568007504"} +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_fd6f5aecc048b627a9bab6f568007504" for 127.0.0.1 at 2018-11-05 23:55:53 -0800 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_fd6f5aecc048b627a9bab6f568007504"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (0.6ms) +Completed 200 OK in 487ms (Views: 14.6ms | ActiveRecord: 0.0ms) + + + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (0.2ms) +Completed 200 OK in 526ms (Views: 13.5ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 127.0.0.1 at 2018-11-05 23:56:07 -0800 +Processing by HomepageController#index as HTML + Rendering homepage/index.html.erb within layouts/application + Rendered homepage/index.html.erb within layouts/application (0.5ms) +Completed 200 OK in 17ms (Views: 14.4ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=asfvagdsfhdfjdghjk&commit=Search" for 127.0.0.1 at 2018-11-05 23:56:14 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"asfvagdsfhdfjdghjk", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.7ms) +Completed 200 OK in 536ms (Views: 13.9ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=asfvagdsfhdfjdghjk&commit=Search" for 127.0.0.1 at 2018-11-05 23:56:20 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"asfvagdsfhdfjdghjk", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.7ms) +Completed 200 OK in 554ms (Views: 14.9ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=asfvagdsfhdfjdghjk&commit=Search" for 127.0.0.1 at 2018-11-05 23:56:25 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"asfvagdsfhdfjdghjk", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.7ms) +Completed 200 OK in 507ms (Views: 15.0ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=dog&commit=Search" for 127.0.0.1 at 2018-11-05 23:56:32 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"dog", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 1555ms (Views: 18.2ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=goop&commit=Search" for 127.0.0.1 at 2018-11-05 23:56:47 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"goop", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 657ms (Views: 14.8ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 127.0.0.1 at 2018-11-06 08:40:36 -0800 +Processing by HomepageController#index as HTML + Rendering homepage/index.html.erb within layouts/application + Rendered homepage/index.html.erb within layouts/application (9.1ms) +Completed 200 OK in 61ms (Views: 46.5ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 127.0.0.1 at 2018-11-06 17:52:48 -0800 +  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC + ↳ /Users/kjfitzpatrick/.rvm/gems/ruby-2.5.1/gems/activerecord-5.2.1/lib/active_record/log_subscriber.rb:98 +Processing by HomepageController#index as HTML + Rendering homepage/index.html.erb within layouts/application + Rendered homepage/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 313ms (Views: 307.1ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=eggs&commit=Search" for 127.0.0.1 at 2018-11-06 17:53:54 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"eggs", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (4.6ms) +Completed 200 OK in 3015ms (Views: 19.1ms | ActiveRecord: 0.0ms) + + +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_9d74a7986510d0380b3fb47b7b65bf33" for 127.0.0.1 at 2018-11-06 17:54:08 -0800 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_9d74a7986510d0380b3fb47b7b65bf33"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (0.5ms) +Completed 200 OK in 546ms (Views: 12.6ms | ActiveRecord: 0.0ms) + + +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_79fb80a8033dc74d016f149f1d08a5a3" for 127.0.0.1 at 2018-11-06 17:54:27 -0800 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_79fb80a8033dc74d016f149f1d08a5a3"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (0.7ms) +Completed 200 OK in 525ms (Views: 15.5ms | ActiveRecord: 0.0ms) + + +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_537674d26ba277c31469d316126db1ad" for 127.0.0.1 at 2018-11-06 17:54:35 -0800 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_537674d26ba277c31469d316126db1ad"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (0.6ms) +Completed 200 OK in 525ms (Views: 12.2ms | ActiveRecord: 0.0ms) + + +Started GET "/recipe?r=http%3A%2F%2Fwww.edamam.com%2Fontologies%2Fedamam.owl%23recipe_dda0ee5255a5c1a5eb6b8068e9e44a1a" for 127.0.0.1 at 2018-11-06 17:55:11 -0800 +Processing by RecipesController#show as HTML + Parameters: {"r"=>"http://www.edamam.com/ontologies/edamam.owl#recipe_dda0ee5255a5c1a5eb6b8068e9e44a1a"} + Rendering recipes/show.html.erb within layouts/application + Rendered recipes/show.html.erb within layouts/application (0.7ms) +Completed 200 OK in 1027ms (Views: 13.7ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 127.0.0.1 at 2018-11-07 09:56:04 -0800 +  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC + ↳ /Users/kjfitzpatrick/.rvm/gems/ruby-2.5.1/gems/activerecord-5.2.1/lib/active_record/log_subscriber.rb:98 +Processing by HomepageController#index as HTML + Rendering homepage/index.html.erb within layouts/application + Rendered homepage/index.html.erb within layouts/application (1.9ms) +Completed 200 OK in 198ms (Views: 191.1ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=beef&commit=Search" for 127.0.0.1 at 2018-11-07 09:56:16 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"beef", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.7ms) +Completed 200 OK in 5755ms (Views: 13.0ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=beef&commit=Search" for 127.0.0.1 at 2018-11-07 09:57:02 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"beef", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.7ms) +Completed 200 OK in 1356ms (Views: 13.6ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=beef&commit=Search" for 127.0.0.1 at 2018-11-07 10:02:09 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"beef", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.7ms) +Completed 200 OK in 1044ms (Views: 12.9ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=beef&commit=Search" for 127.0.0.1 at 2018-11-07 10:02:15 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"beef", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.7ms) +Completed 200 OK in 1594ms (Views: 14.5ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=beef&commit=Search" for 127.0.0.1 at 2018-11-07 10:02:29 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"beef", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 408ms (Views: 13.4ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=beef&commit=Search" for 127.0.0.1 at 2018-11-07 10:02:32 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"beef", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.7ms) +Completed 200 OK in 455ms (Views: 27.8ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=chicken&commit=Search" for 127.0.0.1 at 2018-11-07 10:03:13 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"chicken", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.7ms) +Completed 200 OK in 435ms (Views: 15.5ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=chicken&commit=Search" for 127.0.0.1 at 2018-11-07 10:07:06 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"chicken", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 10972ms (Views: 16.1ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=chicken&commit=Search" for 127.0.0.1 at 2018-11-07 10:08:52 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"chicken", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 481ms (Views: 17.2ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=chicken&commit=Search" for 127.0.0.1 at 2018-11-07 10:12:19 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"chicken", "commit"=>"Search"} +Started GET "/search?utf8=%E2%9C%93&q=chicken&commit=Search" for 127.0.0.1 at 2018-11-07 10:12:22 -0800 + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 257152ms (Views: 15.5ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=chicken&commit=Search" for 127.0.0.1 at 2018-11-07 10:16:36 -0800 +Started GET "/search?utf8=%E2%9C%93&q=chicken&commit=Search" for 127.0.0.1 at 2018-11-07 10:16:36 -0800 +Started GET "/search?utf8=%E2%9C%93&q=chicken&commit=Search" for 127.0.0.1 at 2018-11-07 10:16:36 -0800 +Started GET "/search?utf8=%E2%9C%93&q=chicken&commit=Search" for 127.0.0.1 at 2018-11-07 10:16:36 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"chicken", "commit"=>"Search"} +Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.0ms) + + + +NameError - uninitialized constant MuncherApiWrapper::EDAMAM_ID: + lib/muncher_api_wrapper.rb:5:in `' + lib/muncher_api_wrapper.rb:3:in `
' + app/controllers/recipes_controller.rb:9:in `index' + +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"chicken", "commit"=>"Search"} +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"chicken", "commit"=>"Search"} +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"chicken", "commit"=>"Search"} +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"chicken", "commit"=>"Search"} +Completed 500 Internal Server Error in 14ms (ActiveRecord: 0.0ms) + + + +NameError - uninitialized constant MuncherApiWrapper::EDAMAM_ID: + lib/muncher_api_wrapper.rb:5:in `' + lib/muncher_api_wrapper.rb:3:in `
' + app/controllers/recipes_controller.rb:9:in `index' + +Completed 500 Internal Server Error in 13ms (ActiveRecord: 0.0ms) + + + +NameError - uninitialized constant MuncherApiWrapper::EDAMAM_ID: + lib/muncher_api_wrapper.rb:5:in `' + lib/muncher_api_wrapper.rb:3:in `
' + app/controllers/recipes_controller.rb:9:in `index' + +Completed 500 Internal Server Error in 20ms (ActiveRecord: 0.0ms) + + + +NameError - uninitialized constant MuncherApiWrapper::EDAMAM_ID: + lib/muncher_api_wrapper.rb:5:in `' + lib/muncher_api_wrapper.rb:3:in `
' + app/controllers/recipes_controller.rb:9:in `index' + +Completed 500 Internal Server Error in 26ms (ActiveRecord: 0.0ms) + + + +NameError - uninitialized constant MuncherApiWrapper::EDAMAM_ID: + lib/muncher_api_wrapper.rb:5:in `' + lib/muncher_api_wrapper.rb:3:in `
' + app/controllers/recipes_controller.rb:9:in `index' + +Started GET "/search?utf8=%E2%9C%93&q=chicken&commit=Search" for 127.0.0.1 at 2018-11-07 10:16:36 -0800 +Started GET "/search?utf8=%E2%9C%93&q=chicken&commit=Search" for 127.0.0.1 at 2018-11-07 10:16:36 -0800 +Started GET "/search?utf8=%E2%9C%93&q=chicken&commit=Search" for 127.0.0.1 at 2018-11-07 10:16:36 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"chicken", "commit"=>"Search"} +Started GET "/search?utf8=%E2%9C%93&q=chicken&commit=Search" for 127.0.0.1 at 2018-11-07 10:16:36 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"chicken", "commit"=>"Search"} +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"chicken", "commit"=>"Search"} +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"chicken", "commit"=>"Search"} +Completed 500 Internal Server Error in 16ms (ActiveRecord: 0.0ms) + + +Completed 500 Internal Server Error in 15ms (ActiveRecord: 0.0ms) + + + +NameError - uninitialized constant MuncherApiWrapper::EDAMAM_ID: + lib/muncher_api_wrapper.rb:5:in `' + lib/muncher_api_wrapper.rb:3:in `
' + app/controllers/recipes_controller.rb:9:in `index' + + +NameError - uninitialized constant MuncherApiWrapper::EDAMAM_ID: + lib/muncher_api_wrapper.rb:5:in `' + lib/muncher_api_wrapper.rb:3:in `
' + app/controllers/recipes_controller.rb:9:in `index' + +Completed 500 Internal Server Error in 20ms (ActiveRecord: 0.0ms) + + + +NameError - uninitialized constant MuncherApiWrapper::EDAMAM_ID: + lib/muncher_api_wrapper.rb:5:in `' + lib/muncher_api_wrapper.rb:3:in `
' + app/controllers/recipes_controller.rb:9:in `index' + +Completed 500 Internal Server Error in 20ms (ActiveRecord: 0.0ms) + + + +NameError - uninitialized constant MuncherApiWrapper::EDAMAM_ID: + lib/muncher_api_wrapper.rb:5:in `' + lib/muncher_api_wrapper.rb:3:in `
' + app/controllers/recipes_controller.rb:9:in `index' + +Started POST "/__better_errors/eeabf20733ced603/variables" for 127.0.0.1 at 2018-11-07 10:16:36 -0800 +Started GET "/search?utf8=%E2%9C%93&q=chicken&commit=Search" for 127.0.0.1 at 2018-11-07 10:17:16 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"chicken", "commit"=>"Search"} +Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.0ms) + + + +NameError - uninitialized constant MuncherApiWrapper::EDAMAM_ID: + lib/muncher_api_wrapper.rb:5:in `' + lib/muncher_api_wrapper.rb:3:in `
' + app/controllers/recipes_controller.rb:9:in `index' + +Started POST "/__better_errors/39445720493de03b/variables" for 127.0.0.1 at 2018-11-07 10:17:16 -0800 +Started POST "/__better_errors/39445720493de03b/eval" for 127.0.0.1 at 2018-11-07 10:17:48 -0800 +Started POST "/__better_errors/39445720493de03b/eval" for 127.0.0.1 at 2018-11-07 10:17:52 -0800 +Started POST "/__better_errors/39445720493de03b/eval" for 127.0.0.1 at 2018-11-07 10:18:09 -0800 +Started GET "/search?utf8=%E2%9C%93&q=chicken&commit=Search" for 127.0.0.1 at 2018-11-07 10:18:28 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"chicken", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.7ms) +Completed 200 OK in 557ms (Views: 13.0ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=chicken&commit=Search" for 127.0.0.1 at 2018-11-07 10:19:09 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"chicken", "commit"=>"Search"} +Started GET "/search?utf8=%E2%9C%93&q=chicken&commit=Search" for 127.0.0.1 at 2018-11-07 10:19:19 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"chicken", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.8ms) +Completed 200 OK in 25897ms (Views: 14.1ms | ActiveRecord: 0.0ms) + + + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.7ms) +Completed 200 OK in 91033ms (Views: 13.4ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=chicken&commit=Search" for 127.0.0.1 at 2018-11-07 10:20:40 -0800 +Started GET "/search?utf8=%E2%9C%93&q=chicken&commit=Search" for 127.0.0.1 at 2018-11-07 10:20:40 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"chicken", "commit"=>"Search"} +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"chicken", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.6ms) +Completed 200 OK in 463ms (Views: 13.6ms | ActiveRecord: 0.0ms) + + + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (0.2ms) +Completed 200 OK in 537ms (Views: 22.3ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=chicken&commit=Search" for 127.0.0.1 at 2018-11-07 10:20:56 -0800 +  (2.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC + ↳ /Users/kjfitzpatrick/.rvm/gems/ruby-2.5.1/gems/activerecord-5.2.1/lib/active_record/log_subscriber.rb:98 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"chicken", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (8.6ms) +Completed 200 OK in 3526ms (Views: 146.2ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=eggs&commit=Search" for 127.0.0.1 at 2018-11-07 11:06:05 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"eggs", "commit"=>"Search"} +Started GET "/" for 127.0.0.1 at 2018-11-07 11:06:09 -0800 + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (2.7ms) +Completed 200 OK in 9029ms (Views: 2243.5ms | ActiveRecord: 0.0ms) + + +Processing by HomepageController#index as HTML +Started GET "/" for 127.0.0.1 at 2018-11-07 11:06:14 -0800 + Rendering homepage/index.html.erb within layouts/application + Rendered homepage/index.html.erb within layouts/application (0.6ms) +Processing by HomepageController#index as HTML + Rendering homepage/index.html.erb within layouts/application + Rendered homepage/index.html.erb within layouts/application (0.2ms) +Completed 200 OK in 26ms (Views: 23.5ms | ActiveRecord: 0.0ms) + + +Completed 200 OK in 43ms (Views: 41.0ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=bread&commit=Search" for 127.0.0.1 at 2018-11-07 11:06:25 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"bread", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 6021ms (Views: 13.6ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=bread&commit=Search" for 127.0.0.1 at 2018-11-07 13:08:29 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"bread", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (2.5ms) +Completed 500 Internal Server Error in 2793ms (ActiveRecord: 0.0ms) + + + +Sass::SyntaxError - Invalid CSS after " @import ": expected "{", was "url('https://fo...": + app/views/layouts/application.html.erb:8:in `_app_views_layouts_application_html_erb__1187255075778343042_70202295980320' + +Started POST "/__better_errors/745599c41ddc24a0/variables" for 127.0.0.1 at 2018-11-07 13:08:32 -0800 +Started GET "/search?utf8=%E2%9C%93&q=bread&commit=Search" for 127.0.0.1 at 2018-11-07 13:09:20 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"bread", "commit"=>"Search"} +Started GET "/" for 127.0.0.1 at 2018-11-07 13:09:26 -0800 +Processing by HomepageController#index as HTML + Rendering homepage/index.html.erb within layouts/application + Rendered homepage/index.html.erb within layouts/application (0.5ms) +Completed 200 OK in 1561ms (Views: 1559.1ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 127.0.0.1 at 2018-11-07 13:09:30 -0800 +Processing by HomepageController#index as HTML + Rendering homepage/index.html.erb within layouts/application + Rendered homepage/index.html.erb within layouts/application (0.7ms) +Completed 200 OK in 17ms (Views: 14.9ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=beef&commit=Search" for 127.0.0.1 at 2018-11-07 13:09:34 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"beef", "commit"=>"Search"} +Started GET "/search?utf8=%E2%9C%93&q=beef&commit=Search" for 127.0.0.1 at 2018-11-07 13:09:48 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"beef", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (2.9ms) + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (7.0ms) +Completed 200 OK in 22265ms (Views: 25.2ms | ActiveRecord: 0.0ms) + + +Completed 200 OK in 35922ms (Views: 130.0ms | ActiveRecord: 0.0ms) + + + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 8637ms (Views: 11.9ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=chicken&commit=Search" for 127.0.0.1 at 2018-11-07 13:29:44 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"chicken", "commit"=>"Search"} +Started GET "/" for 127.0.0.1 at 2018-11-07 13:29:47 -0800 +Processing by HomepageController#index as HTML + Rendering homepage/index.html.erb within layouts/application + Rendered homepage/index.html.erb within layouts/application (0.5ms) +Completed 500 Internal Server Error in 18ms (ActiveRecord: 0.0ms) + + + +Sass::SyntaxError - Invalid CSS after " width": expected ";", was ": 250px;": + app/views/layouts/application.html.erb:8:in `_app_views_layouts_application_html_erb__1187255075778343042_70202203681000' + +Started POST "/__better_errors/8732db0b9de8ecc7/variables" for 127.0.0.1 at 2018-11-07 13:29:47 -0800 + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (2.2ms) +Completed 500 Internal Server Error in 5237ms (ActiveRecord: 0.0ms) + + + +Sass::SyntaxError - Invalid CSS after " width": expected ";", was ": 250px;": + app/views/layouts/application.html.erb:8:in `_app_views_layouts_application_html_erb__1187255075778343042_70202291263440' + +Started GET "/" for 127.0.0.1 at 2018-11-07 13:31:24 -0800 +Processing by HomepageController#index as HTML + Rendering homepage/index.html.erb within layouts/application + Rendered homepage/index.html.erb within layouts/application (0.5ms) +Completed 500 Internal Server Error in 21ms (ActiveRecord: 0.0ms) + + + +Sass::SyntaxError - Invalid CSS after "@import "**/*";": expected "}", was "": + app/views/layouts/application.html.erb:8:in `_app_views_layouts_application_html_erb__1187255075778343042_70202289622080' + +Started POST "/__better_errors/b4afd53bd14be933/variables" for 127.0.0.1 at 2018-11-07 13:31:24 -0800 +Started GET "/" for 127.0.0.1 at 2018-11-07 13:32:14 -0800 +Processing by HomepageController#index as HTML + Rendering homepage/index.html.erb within layouts/application + Rendered homepage/index.html.erb within layouts/application (0.6ms) +Completed 200 OK in 1501ms (Views: 1498.4ms | ActiveRecord: 0.0ms) + + +Started GET "/search?utf8=%E2%9C%93&q=beef&commit=Search" for 127.0.0.1 at 2018-11-07 13:32:20 -0800 +Processing by RecipesController#index as HTML + Parameters: {"utf8"=>"✓", "q"=>"beef", "commit"=>"Search"} + Rendering recipes/index.html.erb within layouts/application + Rendered recipes/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 14820ms (Views: 13.4ms | ActiveRecord: 0.0ms) + + diff --git a/log/test.log b/log/test.log new file mode 100644 index 000000000..5cb499aea --- /dev/null +++ b/log/test.log @@ -0,0 +1,34 @@ +  (212.7ms) DROP DATABASE IF EXISTS "Api-Muncher_test" +  (529.9ms) CREATE DATABASE "Api-Muncher_test" ENCODING = 'unicode' + SQL (1.4ms) CREATE EXTENSION IF NOT EXISTS "plpgsql" +  (1.5ms) DROP TABLE IF EXISTS "recipes" CASCADE +  (7.9ms) CREATE TABLE "recipes" ("id" bigserial primary key, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) +  (3.6ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY) +  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (1.2ms) INSERT INTO "schema_migrations" (version) VALUES (20181030222216) +  (5.0ms) CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) + ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]] +  (0.1ms) BEGIN + ActiveRecord::InternalMetadata Create (0.4ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "test"], ["created_at", "2018-10-31 16:57:06.452533"], ["updated_at", "2018-10-31 16:57:06.452533"]] +  (0.3ms) COMMIT + ActiveRecord::InternalMetadata Load (0.8ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]] +  (0.1ms) BEGIN +  (0.1ms) COMMIT +  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC diff --git a/package.json b/package.json new file mode 100644 index 000000000..6d1273559 --- /dev/null +++ b/package.json @@ -0,0 +1,5 @@ +{ + "name": "Api-Muncher", + "private": true, + "dependencies": {} +} diff --git a/public/404.html b/public/404.html new file mode 100644 index 000000000..2be3af26f --- /dev/null +++ b/public/404.html @@ -0,0 +1,67 @@ + + + + The page you were looking for doesn't exist (404) + + + + + + +
+
+

The page you were looking for doesn't exist.

+

You may have mistyped the address or the page may have moved.

+
+

If you are the application owner check the logs for more information.

+
+ + diff --git a/public/422.html b/public/422.html new file mode 100644 index 000000000..c08eac0d1 --- /dev/null +++ b/public/422.html @@ -0,0 +1,67 @@ + + + + The change you wanted was rejected (422) + + + + + + +
+
+

The change you wanted was rejected.

+

Maybe you tried to change something you didn't have access to.

+
+

If you are the application owner check the logs for more information.

+
+ + diff --git a/public/500.html b/public/500.html new file mode 100644 index 000000000..78a030af2 --- /dev/null +++ b/public/500.html @@ -0,0 +1,66 @@ + + + + We're sorry, but something went wrong (500) + + + + + + +
+
+

We're sorry, but something went wrong.

+
+

If you are the application owner check the logs for more information.

+
+ + diff --git a/public/apple-touch-icon-precomposed.png b/public/apple-touch-icon-precomposed.png new file mode 100644 index 000000000..e69de29bb diff --git a/public/apple-touch-icon.png b/public/apple-touch-icon.png new file mode 100644 index 000000000..e69de29bb diff --git a/public/robots.txt b/public/robots.txt new file mode 100644 index 000000000..37b576a4a --- /dev/null +++ b/public/robots.txt @@ -0,0 +1 @@ +# See http://www.robotstxt.org/robotstxt.html for documentation on how to use the robots.txt file diff --git a/storage/.keep b/storage/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/test/application_system_test_case.rb b/test/application_system_test_case.rb new file mode 100644 index 000000000..d19212abd --- /dev/null +++ b/test/application_system_test_case.rb @@ -0,0 +1,5 @@ +require "test_helper" + +class ApplicationSystemTestCase < ActionDispatch::SystemTestCase + driven_by :selenium, using: :chrome, screen_size: [1400, 1400] +end diff --git a/test/cassettes/recipes.yml b/test/cassettes/recipes.yml new file mode 100644 index 000000000..8efded9ae --- /dev/null +++ b/test/cassettes/recipes.yml @@ -0,0 +1,47 @@ +--- +http_interactions: +- request: + method: get + uri: https://api.edamam.com/search?app_id=540129f8&app_key=5ed28c083c24a129f2e18bd58e3cf2a9&q=chicken + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Server: + - ngx_openresty + Date: + - Wed, 31 Oct 2018 17:43:37 GMT + Content-Type: + - application/json;charset=UTF-8 + Transfer-Encoding: + - chunked + Connection: + - keep-alive + Set-Cookie: + - route=e631c7ba5082b8aedfb6e067f8f8e739; Path=/ + Cache-Control: + - private + Expires: + - Thu, 01 Jan 1970 00:00:00 GMT + X-Served-By: + - ip-10-157-133-209/10.157.133.209 + Vary: + - Accept-Encoding + body: + encoding: ASCII-8BIT + string: !binary |- + ewogICJxIiA6ICJjaGlja2VuIiwKICAiZnJvbSIgOiAwLAogICJ0byIgOiAxMCwKICAicGFyYW1zIiA6IHsKICAgICJzYW5lIiA6IFsgXSwKICAgICJxIiA6IFsgImNoaWNrZW4iIF0sCiAgICAiYXBwX2tleSIgOiBbICI1ZWQyOGMwODNjMjRhMTI5ZjJlMThiZDU4ZTNjZjJhOSIgXSwKICAgICJhcHBfaWQiIDogWyAiNTQwMTI5ZjgiIF0KICB9LAogICJtb3JlIiA6IHRydWUsCiAgImNvdW50IiA6IDE4NTc5NCwKICAiaGl0cyIgOiBbIHsKICAgICJyZWNpcGUiIDogewogICAgICAidXJpIiA6ICJodHRwOi8vd3d3LmVkYW1hbS5jb20vb250b2xvZ2llcy9lZGFtYW0ub3dsI3JlY2lwZV83YmY0YTM3MWM2ODg0ZDgwOTY4MmE3MjgwOGRhN2RjMiIsCiAgICAgICJsYWJlbCIgOiAiVGVyaXlha2kgQ2hpY2tlbiIsCiAgICAgICJpbWFnZSIgOiAiaHR0cHM6Ly93d3cuZWRhbWFtLmNvbS93ZWItaW1nLzI2Mi8yNjJiNDM1M2NhMjUwNzQxNzhlYWQyYTA3Y2RmN2RjMS5qcGciLAogICAgICAic291cmNlIiA6ICJEYXZpZCBMZWJvdml0eiIsCiAgICAgICJ1cmwiIDogImh0dHA6Ly93d3cuZGF2aWRsZWJvdml0ei5jb20vMjAxMi8xMi9jaGlja2VuLXRlcml5YWtpLXJlY2lwZS1qYXBhbmVzZS1mYXJtLWZvb2QvIiwKICAgICAgInNoYXJlQXMiIDogImh0dHA6Ly93d3cuZWRhbWFtLmNvbS9yZWNpcGUvdGVyaXlha2ktY2hpY2tlbi03YmY0YTM3MWM2ODg0ZDgwOTY4MmE3MjgwOGRhN2RjMi9jaGlja2VuIiwKICAgICAgInlpZWxkIiA6IDYuMCwKICAgICAgImRpZXRMYWJlbHMiIDogWyAiTG93LUNhcmIiIF0sCiAgICAgICJoZWFsdGhMYWJlbHMiIDogWyAiU3VnYXItQ29uc2Npb3VzIiwgIlBlYW51dC1GcmVlIiwgIlRyZWUtTnV0LUZyZWUiLCAiQWxjb2hvbC1GcmVlIiBdLAogICAgICAiY2F1dGlvbnMiIDogWyBdLAogICAgICAiaW5ncmVkaWVudExpbmVzIiA6IFsgIjEvMiBjdXAgKDEyNW1sKSBtaXJpbiIsICIxLzIgY3VwICgxMjVtbCkgc295IHNhdWNlIiwgIk9uZSAyLWluY2ggKDVjbSkgcGllY2Ugb2YgZnJlc2ggZ2luZ2VyLCBwZWVsZWQgYW5kIGdyYXRlZCIsICIyLXBvdW5kcyAoOTAwZykgYm9uZWxlc3MgY2hpY2tlbiB0aGlnaHMgKDQtOCB0aGlnaHMsIGRlcGVuZGluZyBvbiBzaXplKSIgXSwKICAgICAgImluZ3JlZGllbnRzIiA6IFsgewogICAgICAgICJ0ZXh0IiA6ICIxLzIgY3VwICgxMjVtbCkgbWlyaW4iLAogICAgICAgICJ3ZWlnaHQiIDogMTIyLjk5ODUwNzU3Nzk1MzkyLAogICAgICAgICJmb29kQ2F0ZWdvcnkiIDogIldpbmUgJiBMaXF1b3IiCiAgICAgIH0sIHsKICAgICAgICAidGV4dCIgOiAiMS8yIGN1cCAoMTI1bWwpIHNveSBzYXVjZSIsCiAgICAgICAgIndlaWdodCIgOiAxMzQuNzI3NzQ2NzAyNjU1NjgsCiAgICAgICAgImZvb2RDYXRlZ29yeSIgOiAiUGFudHJ5IgogICAgICB9LCB7CiAgICAgICAgInRleHQiIDogIk9uZSAyLWluY2ggKDVjbSkgcGllY2Ugb2YgZnJlc2ggZ2luZ2VyLCBwZWVsZWQgYW5kIGdyYXRlZCIsCiAgICAgICAgIndlaWdodCIgOiAxNS4wLAogICAgICAgICJmb29kQ2F0ZWdvcnkiIDogIkZyZXNoIHByb2R1Y2UiCiAgICAgIH0sIHsKICAgICAgICAidGV4dCIgOiAiMi1wb3VuZHMgKDkwMGcpIGJvbmVsZXNzIGNoaWNrZW4gdGhpZ2hzICg0LTggdGhpZ2hzLCBkZXBlbmRpbmcgb24gc2l6ZSkiLAogICAgICAgICJ3ZWlnaHQiIDogOTA3LjE4NDc0LAogICAgICAgICJmb29kQ2F0ZWdvcnkiIDogIk1lYXRzIgogICAgICB9IF0sCiAgICAgICJjYWxvcmllcyIgOiAyMjUzLjEwMTk4MTMwNjg2NiwKICAgICAgInRvdGFsV2VpZ2h0IiA6IDExNzkuOTEwOTk0MjgwNjA5NywKICAgICAgInRvdGFsVGltZSIgOiAwLjAsCiAgICAgICJ0b3RhbE51dHJpZW50cyIgOiB7CiAgICAgICAgIkVORVJDX0tDQUwiIDogewogICAgICAgICAgImxhYmVsIiA6ICJFbmVyZ3kiLAogICAgICAgICAgInF1YW50aXR5IiA6IDIyNTMuMTAxOTgxMzA2ODY2LAogICAgICAgICAgInVuaXQiIDogImtjYWwiCiAgICAgICAgfSwKICAgICAgICAiRkFUIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiRmF0IiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxNTEuNTYzODMzNDcwMjA1MTcsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LAogICAgICAgICJGQVNBVCIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlNhdHVyYXRlZCIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNDEuMTY5ODM4ODkyNjkyOTQ0LAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwKICAgICAgICAiRkFUUk4iIDogewogICAgICAgICAgImxhYmVsIiA6ICJUcmFucyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMC43NzExMDcwMjkwMDAwMDAyLAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwKICAgICAgICAiRkFNUyIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIk1vbm91bnNhdHVyYXRlZCIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNjMuMTAwMjgxMzczMDk4MzUsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LAogICAgICAgICJGQVBVIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiUG9seXVuc2F0dXJhdGVkIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAzMS44Mjk1Mjg5MDk2Mjc5OSwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sCiAgICAgICAgIkNIT0NERiIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkNhcmJzIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxNy43MjU0NjUxNDEzMzg2MiwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sCiAgICAgICAgIkZJQlRHIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiRmliZXIiLAogICAgICAgICAgInF1YW50aXR5IiA6IDEuMzc3ODIxOTczNjIxMjQ1NiwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sCiAgICAgICAgIlNVR0FSIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiU3VnYXJzIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAwLjc5MzkxMDk4NjgxMDYyMjgsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LAogICAgICAgICJQUk9DTlQiIDogewogICAgICAgICAgImxhYmVsIiA6ICJQcm90ZWluIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxNjEuNzIxNzUwMTY3NDg1OTYsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LAogICAgICAgICJDSE9MRSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkNob2xlc3Rlcm9sIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA4ODkuMDQxMDQ1MjAwMDAwMSwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJOQSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlNvZGl1bSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogODEzOS44MjQ3MzU5Mjg0MzYsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiQ0EiIDogewogICAgICAgICAgImxhYmVsIiA6ICJDYWxjaXVtIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxMTYuNTEzMDEzNTkwNzc0MDgsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiTUciIDogewogICAgICAgICAgImxhYmVsIiA6ICJNYWduZXNpdW0iLAogICAgICAgICAgInF1YW50aXR5IiA6IDI3Ni44MjE2OTYyMTQ2NDI0MywKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJLIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiUG90YXNzaXVtIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAyNTI5LjcyMjE5NDY1MTA0MSwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJGRSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIklyb24iLAogICAgICAgICAgInF1YW50aXR5IiA6IDguMzM1NDA3MDY2NzY2NDYzLAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIlpOIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiWmluYyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTIuOTUwNDE0MjQzODI4Njk2LAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIlAiIDogewogICAgICAgICAgImxhYmVsIiA6ICJQaG9zcGhvcnVzIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxNjYwLjQwODAxMTc4MTA4NTksCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiVklUQV9SQUUiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEEiLAogICAgICAgICAgInF1YW50aXR5IiA6IDIwOC42NTI0OTAyMDAwMDAwMiwKICAgICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgICAgfSwKICAgICAgICAiVklUQyIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMC43NSwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJUSElBIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVGhpYW1pbiAoQjEpIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAwLjcxMDQ1NTAxNjYxMTg3NjQsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiUklCRiIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlJpYm9mbGF2aW4gKEIyKSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMS41NDI4MTg2NTUwNTkzODIsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiTklBIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiTmlhY2luIChCMykiLAogICAgICAgICAgInF1YW50aXR5IiA6IDQ1LjAyODQxNTU0MjU5MDMyNCwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJWSVRCNkEiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEI2IiwKICAgICAgICAgICJxdWFudGl0eSIgOiAzLjM3MTMyODExMjkxOTkzMDQsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiRk9MREZFIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiRm9sYXRlIGVxdWl2YWxlbnQgKHRvdGFsKSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNDcuNzI3NDI2NzM4MzcxOCwKICAgICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgICAgfSwKICAgICAgICAiRk9MRkQiIDogewogICAgICAgICAgImxhYmVsIiA6ICJGb2xhdGUgKGZvb2QpIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA0Ny43Mjc0MjY3MzgzNzE4LAogICAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgICB9LAogICAgICAgICJWSVRCMTIiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEIxMiIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNS42MjQ1NDUzODgwMDAwMDA1LAogICAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgICB9LAogICAgICAgICJWSVREIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBEIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAwLjkwNzE4NDc0MDAwMDAwMDIsCiAgICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICAgIH0sCiAgICAgICAgIlRPQ1BIQSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gRSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMS45NDQwODc5NTQsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiVklUSzEiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEsiLAogICAgICAgICAgInF1YW50aXR5IiA6IDE5LjA2NTg3OTU0MDAwMDAwNSwKICAgICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgICAgfQogICAgICB9LAogICAgICAidG90YWxEYWlseSIgOiB7CiAgICAgICAgIkVORVJDX0tDQUwiIDogewogICAgICAgICAgImxhYmVsIiA6ICJFbmVyZ3kiLAogICAgICAgICAgInF1YW50aXR5IiA6IDExMi42NTUwOTkwNjUzNDMzLAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiRkFUIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiRmF0IiwKICAgICAgICAgICJxdWFudGl0eSIgOiAyMzMuMTc1MTI4NDE1NzAwMjcsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJGQVNBVCIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlNhdHVyYXRlZCIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMjA1Ljg0OTE5NDQ2MzQ2NDcsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJDSE9DREYiIDogewogICAgICAgICAgImxhYmVsIiA6ICJDYXJicyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNS45MDg0ODgzODA0NDYyMDcsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJGSUJURyIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkZpYmVyIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA1LjUxMTI4Nzg5NDQ4NDk4MiwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlBST0NOVCIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlByb3RlaW4iLAogICAgICAgICAgInF1YW50aXR5IiA6IDMyMy40NDM1MDAzMzQ5NzE5MywKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIkNIT0xFIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiQ2hvbGVzdGVyb2wiLAogICAgICAgICAgInF1YW50aXR5IiA6IDI5Ni4zNDcwMTUwNjY2NjY3LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiTkEiIDogewogICAgICAgICAgImxhYmVsIiA6ICJTb2RpdW0iLAogICAgICAgICAgInF1YW50aXR5IiA6IDMzOS4xNTkzNjM5OTcwMTgyLAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiQ0EiIDogewogICAgICAgICAgImxhYmVsIiA6ICJDYWxjaXVtIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxMS42NTEzMDEzNTkwNzc0MDgsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJNRyIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIk1hZ25lc2l1bSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNjUuOTA5OTI3NjcwMTUyOTcsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJLIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiUG90YXNzaXVtIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA1My44MjM4NzY0ODE5MzcwMzUsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJGRSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIklyb24iLAogICAgICAgICAgInF1YW50aXR5IiA6IDQ2LjMwNzgxNzAzNzU5MTQ1NSwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlpOIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiWmluYyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTE3LjczMTAzODU4MDI2MDg3LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiUCIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlBob3NwaG9ydXMiLAogICAgICAgICAgInF1YW50aXR5IiA6IDIzNy4yMDExNDQ1NDAxNTUxMywKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlZJVEFfUkFFIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBBIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAyMy4xODM2MTAwMjIyMjIyMjYsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJWSVRDIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBDIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAwLjgzMzMzMzMzMzMzMzMzMzQsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJUSElBIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVGhpYW1pbiAoQjEpIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA1OS4yMDQ1ODQ3MTc2NTYzNzQsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJSSUJGIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiUmlib2ZsYXZpbiAoQjIpIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxMTguNjc4MzU4MDgxNDkwOTMsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJOSUEiIDogewogICAgICAgICAgImxhYmVsIiA6ICJOaWFjaW4gKEIzKSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMjgxLjQyNzU5NzE0MTE4OTUsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJWSVRCNkEiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEI2IiwKICAgICAgICAgICJxdWFudGl0eSIgOiAyNTkuMzMyOTMxNzYzMDcxNTQsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJGT0xERkUiIDogewogICAgICAgICAgImxhYmVsIiA6ICJGb2xhdGUgZXF1aXZhbGVudCAodG90YWwpIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxMS45MzE4NTY2ODQ1OTI5NSwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlZJVEIxMiIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQjEyIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAyMzQuMzU2MDU3ODMzMzMzMzUsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJWSVREIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBEIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA2LjA0Nzg5ODI2NjY2NjY2NywKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlRPQ1BIQSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gRSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTIuOTYwNTg2MzYsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJWSVRLMSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gSyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTUuODg4MjMyOTUwMDAwMDA0LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfQogICAgICB9LAogICAgICAiZGlnZXN0IiA6IFsgewogICAgICAgICJsYWJlbCIgOiAiRmF0IiwKICAgICAgICAidGFnIiA6ICJGQVQiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogImZhdENvbnRlbnQiLAogICAgICAgICJ0b3RhbCIgOiAxNTEuNTYzODMzNDcwMjA1MTcsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAyMzMuMTc1MTI4NDE1NzAwMjcsCiAgICAgICAgInVuaXQiIDogImciLAogICAgICAgICJzdWIiIDogWyB7CiAgICAgICAgICAibGFiZWwiIDogIlNhdHVyYXRlZCIsCiAgICAgICAgICAidGFnIiA6ICJGQVNBVCIsCiAgICAgICAgICAic2NoZW1hT3JnVGFnIiA6ICJzYXR1cmF0ZWRGYXRDb250ZW50IiwKICAgICAgICAgICJ0b3RhbCIgOiA0MS4xNjk4Mzg4OTI2OTI5NDQsCiAgICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgICAiZGFpbHkiIDogMjA1Ljg0OTE5NDQ2MzQ2NDcsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LCB7CiAgICAgICAgICAibGFiZWwiIDogIlRyYW5zIiwKICAgICAgICAgICJ0YWciIDogIkZBVFJOIiwKICAgICAgICAgICJzY2hlbWFPcmdUYWciIDogInRyYW5zRmF0Q29udGVudCIsCiAgICAgICAgICAidG90YWwiIDogMC43NzExMDcwMjkwMDAwMDAyLAogICAgICAgICAgImhhc1JESSIgOiBmYWxzZSwKICAgICAgICAgICJkYWlseSIgOiAwLjAsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LCB7CiAgICAgICAgICAibGFiZWwiIDogIk1vbm91bnNhdHVyYXRlZCIsCiAgICAgICAgICAidGFnIiA6ICJGQU1TIiwKICAgICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAgICJ0b3RhbCIgOiA2My4xMDAyODEzNzMwOTgzNSwKICAgICAgICAgICJoYXNSREkiIDogZmFsc2UsCiAgICAgICAgICAiZGFpbHkiIDogMC4wLAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwgewogICAgICAgICAgImxhYmVsIiA6ICJQb2x5dW5zYXR1cmF0ZWQiLAogICAgICAgICAgInRhZyIgOiAiRkFQVSIsCiAgICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgICAidG90YWwiIDogMzEuODI5NTI4OTA5NjI3OTksCiAgICAgICAgICAiaGFzUkRJIiA6IGZhbHNlLAogICAgICAgICAgImRhaWx5IiA6IDAuMCwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0gXQogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJDYXJicyIsCiAgICAgICAgInRhZyIgOiAiQ0hPQ0RGIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6ICJjYXJib2h5ZHJhdGVDb250ZW50IiwKICAgICAgICAidG90YWwiIDogMTcuNzI1NDY1MTQxMzM4NjIsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiA1LjkwODQ4ODM4MDQ0NjIwNywKICAgICAgICAidW5pdCIgOiAiZyIsCiAgICAgICAgInN1YiIgOiBbIHsKICAgICAgICAgICJsYWJlbCIgOiAiQ2FyYnMgKG5ldCkiLAogICAgICAgICAgInRhZyIgOiAiQ0hPQ0RGLm5ldCIsCiAgICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgICAidG90YWwiIDogMTYuMzQ3NjQzMTY3NzE3Mzc2LAogICAgICAgICAgImhhc1JESSIgOiBmYWxzZSwKICAgICAgICAgICJkYWlseSIgOiAwLjAsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LCB7CiAgICAgICAgICAibGFiZWwiIDogIkZpYmVyIiwKICAgICAgICAgICJ0YWciIDogIkZJQlRHIiwKICAgICAgICAgICJzY2hlbWFPcmdUYWciIDogImZpYmVyQ29udGVudCIsCiAgICAgICAgICAidG90YWwiIDogMS4zNzc4MjE5NzM2MjEyNDU2LAogICAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICAgImRhaWx5IiA6IDUuNTExMjg3ODk0NDg0OTgyLAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwgewogICAgICAgICAgImxhYmVsIiA6ICJTdWdhcnMiLAogICAgICAgICAgInRhZyIgOiAiU1VHQVIiLAogICAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiAic3VnYXJDb250ZW50IiwKICAgICAgICAgICJ0b3RhbCIgOiAwLjc5MzkxMDk4NjgxMDYyMjgsCiAgICAgICAgICAiaGFzUkRJIiA6IGZhbHNlLAogICAgICAgICAgImRhaWx5IiA6IDAuMCwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sIHsKICAgICAgICAgICJsYWJlbCIgOiAiU3VnYXJzLCBhZGRlZCIsCiAgICAgICAgICAidGFnIiA6ICJTVUdBUi5hZGRlZCIsCiAgICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgICAidG90YWwiIDogMC4wLAogICAgICAgICAgImhhc1JESSIgOiBmYWxzZSwKICAgICAgICAgICJkYWlseSIgOiAwLjAsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9IF0KICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiUHJvdGVpbiIsCiAgICAgICAgInRhZyIgOiAiUFJPQ05UIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6ICJwcm90ZWluQ29udGVudCIsCiAgICAgICAgInRvdGFsIiA6IDE2MS43MjE3NTAxNjc0ODU5NiwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDMyMy40NDM1MDAzMzQ5NzE5MywKICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiQ2hvbGVzdGVyb2wiLAogICAgICAgICJ0YWciIDogIkNIT0xFIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6ICJjaG9sZXN0ZXJvbENvbnRlbnQiLAogICAgICAgICJ0b3RhbCIgOiA4ODkuMDQxMDQ1MjAwMDAwMSwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDI5Ni4zNDcwMTUwNjY2NjY3LAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiU29kaXVtIiwKICAgICAgICAidGFnIiA6ICJOQSIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiAic29kaXVtQ29udGVudCIsCiAgICAgICAgInRvdGFsIiA6IDgxMzkuODI0NzM1OTI4NDM2LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMzM5LjE1OTM2Mzk5NzAxODIsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJDYWxjaXVtIiwKICAgICAgICAidGFnIiA6ICJDQSIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAxMTYuNTEzMDEzNTkwNzc0MDgsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAxMS42NTEzMDEzNTkwNzc0MDgsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJNYWduZXNpdW0iLAogICAgICAgICJ0YWciIDogIk1HIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDI3Ni44MjE2OTYyMTQ2NDI0MywKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDY1LjkwOTkyNzY3MDE1Mjk3LAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiUG90YXNzaXVtIiwKICAgICAgICAidGFnIiA6ICJLIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDI1MjkuNzIyMTk0NjUxMDQxLAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogNTMuODIzODc2NDgxOTM3MDM1LAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiSXJvbiIsCiAgICAgICAgInRhZyIgOiAiRkUiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogOC4zMzU0MDcwNjY3NjY0NjMsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiA0Ni4zMDc4MTcwMzc1OTE0NTUsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJaaW5jIiwKICAgICAgICAidGFnIiA6ICJaTiIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAxMi45NTA0MTQyNDM4Mjg2OTYsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAxMTcuNzMxMDM4NTgwMjYwODcsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJQaG9zcGhvcnVzIiwKICAgICAgICAidGFnIiA6ICJQIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDE2NjAuNDA4MDExNzgxMDg1OSwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDIzNy4yMDExNDQ1NDAxNTUxMywKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQSIsCiAgICAgICAgInRhZyIgOiAiVklUQV9SQUUiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMjA4LjY1MjQ5MDIwMDAwMDAyLAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMjMuMTgzNjEwMDIyMjIyMjI2LAogICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQyIsCiAgICAgICAgInRhZyIgOiAiVklUQyIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAwLjc1LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMC44MzMzMzMzMzMzMzMzMzM0LAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiVGhpYW1pbiAoQjEpIiwKICAgICAgICAidGFnIiA6ICJUSElBIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDAuNzEwNDU1MDE2NjExODc2NCwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDU5LjIwNDU4NDcxNzY1NjM3NCwKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlJpYm9mbGF2aW4gKEIyKSIsCiAgICAgICAgInRhZyIgOiAiUklCRiIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAxLjU0MjgxODY1NTA1OTM4MiwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDExOC42NzgzNTgwODE0OTA5MywKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIk5pYWNpbiAoQjMpIiwKICAgICAgICAidGFnIiA6ICJOSUEiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogNDUuMDI4NDE1NTQyNTkwMzI0LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMjgxLjQyNzU5NzE0MTE4OTUsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEI2IiwKICAgICAgICAidGFnIiA6ICJWSVRCNkEiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMy4zNzEzMjgxMTI5MTk5MzA0LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMjU5LjMzMjkzMTc2MzA3MTU0LAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiRm9sYXRlIGVxdWl2YWxlbnQgKHRvdGFsKSIsCiAgICAgICAgInRhZyIgOiAiRk9MREZFIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDQ3LjcyNzQyNjczODM3MTgsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAxMS45MzE4NTY2ODQ1OTI5NSwKICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJGb2xhdGUgKGZvb2QpIiwKICAgICAgICAidGFnIiA6ICJGT0xGRCIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiA0Ny43Mjc0MjY3MzgzNzE4LAogICAgICAgICJoYXNSREkiIDogZmFsc2UsCiAgICAgICAgImRhaWx5IiA6IDAuMCwKICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJGb2xpYyBhY2lkIiwKICAgICAgICAidGFnIiA6ICJGT0xBQyIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAwLjAsCiAgICAgICAgImhhc1JESSIgOiBmYWxzZSwKICAgICAgICAiZGFpbHkiIDogMC4wLAogICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQjEyIiwKICAgICAgICAidGFnIiA6ICJWSVRCMTIiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogNS42MjQ1NDUzODgwMDAwMDA1LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMjM0LjM1NjA1NzgzMzMzMzM1LAogICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gRCIsCiAgICAgICAgInRhZyIgOiAiVklURCIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAwLjkwNzE4NDc0MDAwMDAwMDIsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiA2LjA0Nzg5ODI2NjY2NjY2NywKICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEUiLAogICAgICAgICJ0YWciIDogIlRPQ1BIQSIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAxLjk0NDA4Nzk1NCwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDEyLjk2MDU4NjM2LAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBLIiwKICAgICAgICAidGFnIiA6ICJWSVRLMSIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAxOS4wNjU4Nzk1NDAwMDAwMDUsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAxNS44ODgyMzI5NTAwMDAwMDQsCiAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgfSBdCiAgICB9LAogICAgImJvb2ttYXJrZWQiIDogZmFsc2UsCiAgICAiYm91Z2h0IiA6IGZhbHNlCiAgfSwgewogICAgInJlY2lwZSIgOiB7CiAgICAgICJ1cmkiIDogImh0dHA6Ly93d3cuZWRhbWFtLmNvbS9vbnRvbG9naWVzL2VkYW1hbS5vd2wjcmVjaXBlX2I3OTMyN2QwNWI4ZTViODM4YWQ2Y2ZkOTU3NmIzMGI2IiwKICAgICAgImxhYmVsIiA6ICJDaGlja2VuIFZlc3V2aW8iLAogICAgICAiaW1hZ2UiIDogImh0dHBzOi8vd3d3LmVkYW1hbS5jb20vd2ViLWltZy9lNDIvZTQyZjkxMTk4MTNlODkwYWYzNGMyNTk3ODVhZTFjZmIuanBnIiwKICAgICAgInNvdXJjZSIgOiAiU2VyaW91cyBFYXRzIiwKICAgICAgInVybCIgOiAiaHR0cDovL3d3dy5zZXJpb3VzZWF0cy5jb20vcmVjaXBlcy8yMDExLzEyL2NoaWNrZW4tdmVzdXZpby1yZWNpcGUuaHRtbCIsCiAgICAgICJzaGFyZUFzIiA6ICJodHRwOi8vd3d3LmVkYW1hbS5jb20vcmVjaXBlL2NoaWNrZW4tdmVzdXZpby1iNzkzMjdkMDViOGU1YjgzOGFkNmNmZDk1NzZiMzBiNi9jaGlja2VuIiwKICAgICAgInlpZWxkIiA6IDQuMCwKICAgICAgImRpZXRMYWJlbHMiIDogWyAiTG93LUNhcmIiIF0sCiAgICAgICJoZWFsdGhMYWJlbHMiIDogWyAiUGVhbnV0LUZyZWUiLCAiVHJlZS1OdXQtRnJlZSIgXSwKICAgICAgImNhdXRpb25zIiA6IFsgXSwKICAgICAgImluZ3JlZGllbnRMaW5lcyIgOiBbICIxLzIgY3VwIG9saXZlIG9pbCIsICI1IGNsb3ZlcyBnYXJsaWMsIHBlZWxlZCIsICIyIGxhcmdlIHJ1c3NldCBwb3RhdG9lcywgcGVlbGVkIGFuZCBjdXQgaW50byBjaHVua3MiLCAiMSAzLTQgcG91bmQgY2hpY2tlbiwgY3V0IGludG8gOCBwaWVjZXMgKG9yIDMgcG91bmQgY2hpY2tlbiBsZWdzKSIsICIzLzQgY3VwIHdoaXRlIHdpbmUiLCAiMy80IGN1cCBjaGlja2VuIHN0b2NrIiwgIjMgdGFibGVzcG9vbnMgY2hvcHBlZCBwYXJzbGV5IiwgIjEgdGFibGVzcG9vbiBkcmllZCBvcmVnYW5vIiwgIlNhbHQgYW5kIHBlcHBlciIsICIxIGN1cCBmcm96ZW4gcGVhcywgdGhhd2VkIiBdLAogICAgICAiaW5ncmVkaWVudHMiIDogWyB7CiAgICAgICAgInRleHQiIDogIjEvMiBjdXAgb2xpdmUgb2lsIiwKICAgICAgICAid2VpZ2h0IiA6IDEwOC4wLAogICAgICAgICJmb29kQ2F0ZWdvcnkiIDogIlBhbnRyeSIKICAgICAgfSwgewogICAgICAgICJ0ZXh0IiA6ICI1IGNsb3ZlcyBnYXJsaWMsIHBlZWxlZCIsCiAgICAgICAgIndlaWdodCIgOiAxNS4wLAogICAgICAgICJmb29kQ2F0ZWdvcnkiIDogIkZyZXNoIHByb2R1Y2UiCiAgICAgIH0sIHsKICAgICAgICAidGV4dCIgOiAiMiBsYXJnZSBydXNzZXQgcG90YXRvZXMsIHBlZWxlZCBhbmQgY3V0IGludG8gY2h1bmtzIiwKICAgICAgICAid2VpZ2h0IiA6IDczOC4wLAogICAgICAgICJmb29kQ2F0ZWdvcnkiIDogIkZyZXNoIHByb2R1Y2UiCiAgICAgIH0sIHsKICAgICAgICAidGV4dCIgOiAiMSAzLTQgcG91bmQgY2hpY2tlbiwgY3V0IGludG8gOCBwaWVjZXMgKG9yIDMgcG91bmQgY2hpY2tlbiBsZWdzKSIsCiAgICAgICAgIndlaWdodCIgOiAxNTg3LjU3MzI5NTAwMDAwMDEsCiAgICAgICAgImZvb2RDYXRlZ29yeSIgOiAiTWVhdHMiCiAgICAgIH0sIHsKICAgICAgICAidGV4dCIgOiAiMy80IGN1cCB3aGl0ZSB3aW5lIiwKICAgICAgICAid2VpZ2h0IiA6IDE2OS41LAogICAgICAgICJmb29kQ2F0ZWdvcnkiIDogIldpbmUsIEJlZXIgJiBMaXF1b3IiCiAgICAgIH0sIHsKICAgICAgICAidGV4dCIgOiAiMy80IGN1cCBjaGlja2VuIHN0b2NrIiwKICAgICAgICAid2VpZ2h0IiA6IDE4MC4wLAogICAgICAgICJmb29kQ2F0ZWdvcnkiIDogIlByZXBhcmVkIGZvb2RzIgogICAgICB9LCB7CiAgICAgICAgInRleHQiIDogIjMgdGFibGVzcG9vbnMgY2hvcHBlZCBwYXJzbGV5IiwKICAgICAgICAid2VpZ2h0IiA6IDExLjM5OTk5OTk5OTk5OTk5OSwKICAgICAgICAiZm9vZENhdGVnb3J5IiA6ICJGcmVzaCBwcm9kdWNlIgogICAgICB9LCB7CiAgICAgICAgInRleHQiIDogIjEgdGFibGVzcG9vbiBkcmllZCBvcmVnYW5vIiwKICAgICAgICAid2VpZ2h0IiA6IDUuOTk5OTk5OTk5ODk4NTU4NSwKICAgICAgICAiZm9vZENhdGVnb3J5IiA6ICJQYW50cnkiCiAgICAgIH0sIHsKICAgICAgICAidGV4dCIgOiAiU2FsdCBhbmQgcGVwcGVyIiwKICAgICAgICAid2VpZ2h0IiA6IDE3LjY5NjgzOTc2OTk5OTM5MywKICAgICAgICAiZm9vZENhdGVnb3J5IiA6ICJQYW50cnkiCiAgICAgIH0sIHsKICAgICAgICAidGV4dCIgOiAiU2FsdCBhbmQgcGVwcGVyIiwKICAgICAgICAid2VpZ2h0IiA6IDguODQ4NDE5ODg0OTk5Njk2LAogICAgICAgICJmb29kQ2F0ZWdvcnkiIDogIlBhbnRyeSIKICAgICAgfSwgewogICAgICAgICJ0ZXh0IiA6ICIxIGN1cCBmcm96ZW4gcGVhcywgdGhhd2VkIiwKICAgICAgICAid2VpZ2h0IiA6IDEzNC4wLAogICAgICAgICJmb29kQ2F0ZWdvcnkiIDogIkZyb3plbiIKICAgICAgfSBdLAogICAgICAiY2Fsb3JpZXMiIDogNDIzMC4zMDU2OTEyMDEwODEsCiAgICAgICJ0b3RhbFdlaWdodCIgOiAyOTcyLjkzMDI0NTc5MjQxMDUsCiAgICAgICJ0b3RhbFRpbWUiIDogNjAuMCwKICAgICAgInRvdGFsTnV0cmllbnRzIiA6IHsKICAgICAgICAiRU5FUkNfS0NBTCIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkVuZXJneSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNDIzMC4zMDU2OTEyMDEwODEsCiAgICAgICAgICAidW5pdCIgOiAia2NhbCIKICAgICAgICB9LAogICAgICAgICJGQVQiIDogewogICAgICAgICAgImxhYmVsIiA6ICJGYXQiLAogICAgICAgICAgInF1YW50aXR5IiA6IDI3NC41NzY5MjQ0ODI2MDY2NywKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sCiAgICAgICAgIkZBU0FUIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiU2F0dXJhdGVkIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA2Mi41NDM5ODYxMzQ2NTc2MiwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sCiAgICAgICAgIkZBVFJOIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVHJhbnMiLAogICAgICAgICAgInF1YW50aXR5IiA6IDEuMDQ3MTYzMzQ1MzgyLAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwKICAgICAgICAiRkFNUyIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIk1vbm91bnNhdHVyYXRlZCIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTQ3LjQxMTk5OTg3NjM4OTQyLAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwKICAgICAgICAiRkFQVSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlBvbHl1bnNhdHVyYXRlZCIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNDcuMzkxNDczMDgxODMwOSwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sCiAgICAgICAgIkNIT0NERiIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkNhcmJzIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxNzcuODQyNzg0NTE2Mzg3NCwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sCiAgICAgICAgIkZJQlRHIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiRmliZXIiLAogICAgICAgICAgInF1YW50aXR5IiA6IDIxLjEwMzg1MDIzMDg2MTgxMywKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sCiAgICAgICAgIlNVR0FSIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiU3VnYXJzIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxNi4yOTU3Mjk4ODcyNTk4NSwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sCiAgICAgICAgIlBST0NOVCIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlByb3RlaW4iLAogICAgICAgICAgInF1YW50aXR5IiA6IDIzMC45OTA4NTExNzc2NDIzNiwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sCiAgICAgICAgIkNIT0xFIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiQ2hvbGVzdGVyb2wiLAogICAgICAgICAgInF1YW50aXR5IiA6IDgxNS4wNjIzODA0NSwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJOQSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlNvZGl1bSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNjg3OS41MTc5ODE1MzA1MzQsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiQ0EiIDogewogICAgICAgICAgImxhYmVsIiA6ICJDYWxjaXVtIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA0NDcuMzEyMDI5OTcyNzMxNiwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJNRyIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIk1hZ25lc2l1bSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNDg1LjU2Njg1MTQzMjE1MDc3LAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIksiIDogewogICAgICAgICAgImxhYmVsIiA6ICJQb3Rhc3NpdW0iLAogICAgICAgICAgInF1YW50aXR5IiA6IDU5NTAuOTI0MzgxNDc2OTY5LAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIkZFIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiSXJvbiIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMjMuNjMwNTg4Mjg4MTkwOTMyLAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIlpOIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiWmluYyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTguNDEzNzg3NjM5Mzk2MjgsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiUCIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlBob3NwaG9ydXMiLAogICAgICAgICAgInF1YW50aXR5IiA6IDIyMzQuMjUwNzY5MTAwMTQ5NywKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJWSVRBX1JBRSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNjM3LjkxODUwODAxNDg2MzcsCiAgICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICAgIH0sCiAgICAgICAgIlZJVEMiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEMiLAogICAgICAgICAgInF1YW50aXR5IiA6IDEwMy43OTg3OTc0NDk1OTc2NywKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJUSElBIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVGhpYW1pbiAoQjEpIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxLjczMTQwNTE5NzgzNTYyLAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIlJJQkYiIDogewogICAgICAgICAgImxhYmVsIiA6ICJSaWJvZmxhdmluIChCMikiLAogICAgICAgICAgInF1YW50aXR5IiA6IDEuOTI2NzAzOTY0NTEyNDY0LAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIk5JQSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIk5pYWNpbiAoQjMpIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA4Ny4wMzU3ODQwOTg0ODY4NCwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJWSVRCNkEiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEI2IiwKICAgICAgICAgICJxdWFudGl0eSIgOiA2LjkxNDE5MzM0Mzk2NDI4OSwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJGT0xERkUiIDogewogICAgICAgICAgImxhYmVsIiA6ICJGb2xhdGUgZXF1aXZhbGVudCAodG90YWwpIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAyODMuMzEwMjIxODE2MjA5NSwKICAgICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgICAgfSwKICAgICAgICAiRk9MRkQiIDogewogICAgICAgICAgImxhYmVsIiA6ICJGb2xhdGUgKGZvb2QpIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAyODMuMzEwMjIxODE2MjA5NSwKICAgICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgICAgfSwKICAgICAgICAiVklUQjEyIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBCMTIiLAogICAgICAgICAgInF1YW50aXR5IiA6IDMuMzQ2NjA0NTA1ODYsCiAgICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICAgIH0sCiAgICAgICAgIlZJVEQiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEQiLAogICAgICAgICAgInF1YW50aXR5IiA6IDIuMTU5MDk5NjgxMjAwMDAwMywKICAgICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgICAgfSwKICAgICAgICAiVE9DUEhBIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBFIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAyMC4xNzYzNzMwODg1ODU0OCwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJWSVRLMSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gSyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMzcxLjkxOTExMDk2MDExMzgsCiAgICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICAgIH0KICAgICAgfSwKICAgICAgInRvdGFsRGFpbHkiIDogewogICAgICAgICJFTkVSQ19LQ0FMIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiRW5lcmd5IiwKICAgICAgICAgICJxdWFudGl0eSIgOiAyMTEuNTE1Mjg0NTYwMDU0MDYsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJGQVQiIDogewogICAgICAgICAgImxhYmVsIiA6ICJGYXQiLAogICAgICAgICAgInF1YW50aXR5IiA6IDQyMi40MjYwMzc2NjU1NDg3MywKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIkZBU0FUIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiU2F0dXJhdGVkIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAzMTIuNzE5OTMwNjczMjg4MSwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIkNIT0NERiIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkNhcmJzIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA1OS4yODA5MjgxNzIxMjkxNCwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIkZJQlRHIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiRmliZXIiLAogICAgICAgICAgInF1YW50aXR5IiA6IDg0LjQxNTQwMDkyMzQ0NzI1LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiUFJPQ05UIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiUHJvdGVpbiIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNDYxLjk4MTcwMjM1NTI4NDcsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJDSE9MRSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkNob2xlc3Rlcm9sIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAyNzEuNjg3NDYwMTUsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJOQSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlNvZGl1bSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMjg2LjY0NjU4MjU2Mzc3MjI2LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiQ0EiIDogewogICAgICAgICAgImxhYmVsIiA6ICJDYWxjaXVtIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA0NC43MzEyMDI5OTcyNzMxNSwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIk1HIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiTWFnbmVzaXVtIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxMTUuNjExMTU1MTAyODkzMDUsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJLIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiUG90YXNzaXVtIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxMjYuNjE1NDEyMzcxODUwNDEsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJGRSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIklyb24iLAogICAgICAgICAgInF1YW50aXR5IiA6IDEzMS4yODEwNDYwNDU1MDUxOCwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlpOIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiWmluYyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTY3LjM5ODA2OTQ0OTA1NzEsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJQIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiUGhvc3Bob3J1cyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMzE5LjE3ODY4MTMwMDAyMTM3LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiVklUQV9SQUUiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEEiLAogICAgICAgICAgInF1YW50aXR5IiA6IDcwLjg3OTgzNDIyMzg3Mzc2LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiVklUQyIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTE1LjMzMTk5NzE2NjIxOTY0LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiVEhJQSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlRoaWFtaW4gKEIxKSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTQ0LjI4Mzc2NjQ4NjMwMTY2LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiUklCRiIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlJpYm9mbGF2aW4gKEIyKSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTQ4LjIwNzk5NzI3MDE4OTU0LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiTklBIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiTmlhY2luIChCMykiLAogICAgICAgICAgInF1YW50aXR5IiA6IDU0My45NzM2NTA2MTU1NDI3LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiVklUQjZBIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBCNiIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNTMxLjg2MTAyNjQ1ODc5MTUsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJGT0xERkUiIDogewogICAgICAgICAgImxhYmVsIiA6ICJGb2xhdGUgZXF1aXZhbGVudCAodG90YWwpIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA3MC44Mjc1NTU0NTQwNTIzNywKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlZJVEIxMiIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQjEyIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxMzkuNDQxODU0NDEwODMzMzIsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJWSVREIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBEIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxNC4zOTM5OTc4NzQ2NjY2NjksCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJUT0NQSEEiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEUiLAogICAgICAgICAgInF1YW50aXR5IiA6IDEzNC41MDkxNTM5MjM5MDMyLAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiVklUSzEiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEsiLAogICAgICAgICAgInF1YW50aXR5IiA6IDMwOS45MzI1OTI0NjY3NjE1NSwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0KICAgICAgfSwKICAgICAgImRpZ2VzdCIgOiBbIHsKICAgICAgICAibGFiZWwiIDogIkZhdCIsCiAgICAgICAgInRhZyIgOiAiRkFUIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6ICJmYXRDb250ZW50IiwKICAgICAgICAidG90YWwiIDogMjc0LjU3NjkyNDQ4MjYwNjY3LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogNDIyLjQyNjAzNzY2NTU0ODczLAogICAgICAgICJ1bml0IiA6ICJnIiwKICAgICAgICAic3ViIiA6IFsgewogICAgICAgICAgImxhYmVsIiA6ICJTYXR1cmF0ZWQiLAogICAgICAgICAgInRhZyIgOiAiRkFTQVQiLAogICAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiAic2F0dXJhdGVkRmF0Q29udGVudCIsCiAgICAgICAgICAidG90YWwiIDogNjIuNTQzOTg2MTM0NjU3NjIsCiAgICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgICAiZGFpbHkiIDogMzEyLjcxOTkzMDY3MzI4ODEsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LCB7CiAgICAgICAgICAibGFiZWwiIDogIlRyYW5zIiwKICAgICAgICAgICJ0YWciIDogIkZBVFJOIiwKICAgICAgICAgICJzY2hlbWFPcmdUYWciIDogInRyYW5zRmF0Q29udGVudCIsCiAgICAgICAgICAidG90YWwiIDogMS4wNDcxNjMzNDUzODIsCiAgICAgICAgICAiaGFzUkRJIiA6IGZhbHNlLAogICAgICAgICAgImRhaWx5IiA6IDAuMCwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sIHsKICAgICAgICAgICJsYWJlbCIgOiAiTW9ub3Vuc2F0dXJhdGVkIiwKICAgICAgICAgICJ0YWciIDogIkZBTVMiLAogICAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICAgInRvdGFsIiA6IDE0Ny40MTE5OTk4NzYzODk0MiwKICAgICAgICAgICJoYXNSREkiIDogZmFsc2UsCiAgICAgICAgICAiZGFpbHkiIDogMC4wLAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwgewogICAgICAgICAgImxhYmVsIiA6ICJQb2x5dW5zYXR1cmF0ZWQiLAogICAgICAgICAgInRhZyIgOiAiRkFQVSIsCiAgICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgICAidG90YWwiIDogNDcuMzkxNDczMDgxODMwOSwKICAgICAgICAgICJoYXNSREkiIDogZmFsc2UsCiAgICAgICAgICAiZGFpbHkiIDogMC4wLAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSBdCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIkNhcmJzIiwKICAgICAgICAidGFnIiA6ICJDSE9DREYiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogImNhcmJvaHlkcmF0ZUNvbnRlbnQiLAogICAgICAgICJ0b3RhbCIgOiAxNzcuODQyNzg0NTE2Mzg3NCwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDU5LjI4MDkyODE3MjEyOTE0LAogICAgICAgICJ1bml0IiA6ICJnIiwKICAgICAgICAic3ViIiA6IFsgewogICAgICAgICAgImxhYmVsIiA6ICJDYXJicyAobmV0KSIsCiAgICAgICAgICAidGFnIiA6ICJDSE9DREYubmV0IiwKICAgICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAgICJ0b3RhbCIgOiAxNTYuNzM4OTM0Mjg1NTI1NiwKICAgICAgICAgICJoYXNSREkiIDogZmFsc2UsCiAgICAgICAgICAiZGFpbHkiIDogMC4wLAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwgewogICAgICAgICAgImxhYmVsIiA6ICJGaWJlciIsCiAgICAgICAgICAidGFnIiA6ICJGSUJURyIsCiAgICAgICAgICAic2NoZW1hT3JnVGFnIiA6ICJmaWJlckNvbnRlbnQiLAogICAgICAgICAgInRvdGFsIiA6IDIxLjEwMzg1MDIzMDg2MTgxMywKICAgICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAgICJkYWlseSIgOiA4NC40MTU0MDA5MjM0NDcyNSwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sIHsKICAgICAgICAgICJsYWJlbCIgOiAiU3VnYXJzIiwKICAgICAgICAgICJ0YWciIDogIlNVR0FSIiwKICAgICAgICAgICJzY2hlbWFPcmdUYWciIDogInN1Z2FyQ29udGVudCIsCiAgICAgICAgICAidG90YWwiIDogMTYuMjk1NzI5ODg3MjU5ODUsCiAgICAgICAgICAiaGFzUkRJIiA6IGZhbHNlLAogICAgICAgICAgImRhaWx5IiA6IDAuMCwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sIHsKICAgICAgICAgICJsYWJlbCIgOiAiU3VnYXJzLCBhZGRlZCIsCiAgICAgICAgICAidGFnIiA6ICJTVUdBUi5hZGRlZCIsCiAgICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgICAidG90YWwiIDogMC4wLAogICAgICAgICAgImhhc1JESSIgOiBmYWxzZSwKICAgICAgICAgICJkYWlseSIgOiAwLjAsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9IF0KICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiUHJvdGVpbiIsCiAgICAgICAgInRhZyIgOiAiUFJPQ05UIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6ICJwcm90ZWluQ29udGVudCIsCiAgICAgICAgInRvdGFsIiA6IDIzMC45OTA4NTExNzc2NDIzNiwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDQ2MS45ODE3MDIzNTUyODQ3LAogICAgICAgICJ1bml0IiA6ICJnIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJDaG9sZXN0ZXJvbCIsCiAgICAgICAgInRhZyIgOiAiQ0hPTEUiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogImNob2xlc3Rlcm9sQ29udGVudCIsCiAgICAgICAgInRvdGFsIiA6IDgxNS4wNjIzODA0NSwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDI3MS42ODc0NjAxNSwKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlNvZGl1bSIsCiAgICAgICAgInRhZyIgOiAiTkEiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogInNvZGl1bUNvbnRlbnQiLAogICAgICAgICJ0b3RhbCIgOiA2ODc5LjUxNzk4MTUzMDUzNCwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDI4Ni42NDY1ODI1NjM3NzIyNiwKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIkNhbGNpdW0iLAogICAgICAgICJ0YWciIDogIkNBIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDQ0Ny4zMTIwMjk5NzI3MzE2LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogNDQuNzMxMjAyOTk3MjczMTUsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJNYWduZXNpdW0iLAogICAgICAgICJ0YWciIDogIk1HIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDQ4NS41NjY4NTE0MzIxNTA3NywKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDExNS42MTExNTUxMDI4OTMwNSwKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlBvdGFzc2l1bSIsCiAgICAgICAgInRhZyIgOiAiSyIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiA1OTUwLjkyNDM4MTQ3Njk2OSwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDEyNi42MTU0MTIzNzE4NTA0MSwKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIklyb24iLAogICAgICAgICJ0YWciIDogIkZFIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDIzLjYzMDU4ODI4ODE5MDkzMiwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDEzMS4yODEwNDYwNDU1MDUxOCwKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlppbmMiLAogICAgICAgICJ0YWciIDogIlpOIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDE4LjQxMzc4NzYzOTM5NjI4LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMTY3LjM5ODA2OTQ0OTA1NzEsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJQaG9zcGhvcnVzIiwKICAgICAgICAidGFnIiA6ICJQIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDIyMzQuMjUwNzY5MTAwMTQ5NywKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDMxOS4xNzg2ODEzMDAwMjEzNywKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQSIsCiAgICAgICAgInRhZyIgOiAiVklUQV9SQUUiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogNjM3LjkxODUwODAxNDg2MzcsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiA3MC44Nzk4MzQyMjM4NzM3NiwKICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEMiLAogICAgICAgICJ0YWciIDogIlZJVEMiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMTAzLjc5ODc5NzQ0OTU5NzY3LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMTE1LjMzMTk5NzE2NjIxOTY0LAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiVGhpYW1pbiAoQjEpIiwKICAgICAgICAidGFnIiA6ICJUSElBIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDEuNzMxNDA1MTk3ODM1NjIsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAxNDQuMjgzNzY2NDg2MzAxNjYsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJSaWJvZmxhdmluIChCMikiLAogICAgICAgICJ0YWciIDogIlJJQkYiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMS45MjY3MDM5NjQ1MTI0NjQsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAxNDguMjA3OTk3MjcwMTg5NTQsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJOaWFjaW4gKEIzKSIsCiAgICAgICAgInRhZyIgOiAiTklBIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDg3LjAzNTc4NDA5ODQ4Njg0LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogNTQzLjk3MzY1MDYxNTU0MjcsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEI2IiwKICAgICAgICAidGFnIiA6ICJWSVRCNkEiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogNi45MTQxOTMzNDM5NjQyODksCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiA1MzEuODYxMDI2NDU4NzkxNSwKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIkZvbGF0ZSBlcXVpdmFsZW50ICh0b3RhbCkiLAogICAgICAgICJ0YWciIDogIkZPTERGRSIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAyODMuMzEwMjIxODE2MjA5NSwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDcwLjgyNzU1NTQ1NDA1MjM3LAogICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIkZvbGF0ZSAoZm9vZCkiLAogICAgICAgICJ0YWciIDogIkZPTEZEIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDI4My4zMTAyMjE4MTYyMDk1LAogICAgICAgICJoYXNSREkiIDogZmFsc2UsCiAgICAgICAgImRhaWx5IiA6IDAuMCwKICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJGb2xpYyBhY2lkIiwKICAgICAgICAidGFnIiA6ICJGT0xBQyIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAwLjAsCiAgICAgICAgImhhc1JESSIgOiBmYWxzZSwKICAgICAgICAiZGFpbHkiIDogMC4wLAogICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQjEyIiwKICAgICAgICAidGFnIiA6ICJWSVRCMTIiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMy4zNDY2MDQ1MDU4NiwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDEzOS40NDE4NTQ0MTA4MzMzMiwKICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEQiLAogICAgICAgICJ0YWciIDogIlZJVEQiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMi4xNTkwOTk2ODEyMDAwMDAzLAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMTQuMzkzOTk3ODc0NjY2NjY5LAogICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gRSIsCiAgICAgICAgInRhZyIgOiAiVE9DUEhBIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDIwLjE3NjM3MzA4ODU4NTQ4LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMTM0LjUwOTE1MzkyMzkwMzIsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEsiLAogICAgICAgICJ0YWciIDogIlZJVEsxIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDM3MS45MTkxMTA5NjAxMTM4LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMzA5LjkzMjU5MjQ2Njc2MTU1LAogICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgIH0gXQogICAgfSwKICAgICJib29rbWFya2VkIiA6IGZhbHNlLAogICAgImJvdWdodCIgOiBmYWxzZQogIH0sIHsKICAgICJyZWNpcGUiIDogewogICAgICAidXJpIiA6ICJodHRwOi8vd3d3LmVkYW1hbS5jb20vb250b2xvZ2llcy9lZGFtYW0ub3dsI3JlY2lwZV8wYTNmNDlhM2RhMDdjZDgzNzlkNGUzNWY3YTFhNzJmYyIsCiAgICAgICJsYWJlbCIgOiAiQ2hpY2tlbiBUZXJpeWFraSIsCiAgICAgICJpbWFnZSIgOiAiaHR0cHM6Ly93d3cuZWRhbWFtLmNvbS93ZWItaW1nLzgyNy84Mjc1Y2MzM2U5ZjBmNDMxNDYxN2Q1YTM1NjkwMGFhNy5qcGciLAogICAgICAic291cmNlIiA6ICJObyBSZWNpcGVzIiwKICAgICAgInVybCIgOiAiaHR0cDovL25vcmVjaXBlcy5jb20vYmxvZy8yMDA5LzA3LzE2L2NoaWNrZW4tdGVyaXlha2ktcmVjaXBlLyIsCiAgICAgICJzaGFyZUFzIiA6ICJodHRwOi8vd3d3LmVkYW1hbS5jb20vcmVjaXBlL2NoaWNrZW4tdGVyaXlha2ktMGEzZjQ5YTNkYTA3Y2Q4Mzc5ZDRlMzVmN2ExYTcyZmMvY2hpY2tlbiIsCiAgICAgICJ5aWVsZCIgOiA4LjAsCiAgICAgICJkaWV0TGFiZWxzIiA6IFsgIkxvdy1DYXJiIiBdLAogICAgICAiaGVhbHRoTGFiZWxzIiA6IFsgIlBlYW51dC1GcmVlIiwgIlRyZWUtTnV0LUZyZWUiLCAiQWxjb2hvbC1GcmVlIiBdLAogICAgICAiY2F1dGlvbnMiIDogWyBdLAogICAgICAiaW5ncmVkaWVudExpbmVzIiA6IFsgIjEvMiBjdXAgd2F0ZXIiLCAiMiB0YWJsZXNwb29ucyBKYXBhbmVzZSBzb3kgc2F1Y2UiLCAiMiB0YWJsZXNwb29ucyBkYXJrIGJyb3duIHN1Z2FyIiwgIjIgdGFibGVzcG9vbnMgbWlyaW4iLCAiNC02IHNraW4tb24gZmlsbGV0ZWQgKGJvbmVsZXNzKSBjaGlja2VuIHRoaWdocyIsICIyIHRhYmxlc3Bvb25zIG1pbGQgZmxhdm9yZWQgaG9uZXkgKG9yIG1hbHRvc2UpIiwgIjIgdGFibGVzcG9vbnMgZGFyayBzb3kgc2F1Y2UiLCAiMiB0YWJsZXNwb29ucyBzYWtlIiBdLAogICAgICAiaW5ncmVkaWVudHMiIDogWyB7CiAgICAgICAgInRleHQiIDogIjEvMiBjdXAgd2F0ZXIiLAogICAgICAgICJ3ZWlnaHQiIDogMTE4LjUsCiAgICAgICAgImZvb2RDYXRlZ29yeSIgOiAiQmV2ZXJhZ2VzIgogICAgICB9LCB7CiAgICAgICAgInRleHQiIDogIjIgdGFibGVzcG9vbnMgSmFwYW5lc2Ugc295IHNhdWNlIiwKICAgICAgICAid2VpZ2h0IiA6IDMyLjAsCiAgICAgICAgImZvb2RDYXRlZ29yeSIgOiAiUGFudHJ5IgogICAgICB9LCB7CiAgICAgICAgInRleHQiIDogIjIgdGFibGVzcG9vbnMgZGFyayBicm93biBzdWdhciIsCiAgICAgICAgIndlaWdodCIgOiAxOC4xMjQ5OTk5OTk2OTM1NiwKICAgICAgICAiZm9vZENhdGVnb3J5IiA6ICJQYW50cnkiCiAgICAgIH0sIHsKICAgICAgICAidGV4dCIgOiAiMiB0YWJsZXNwb29ucyBtaXJpbiIsCiAgICAgICAgIndlaWdodCIgOiAyOS44LAogICAgICAgICJmb29kQ2F0ZWdvcnkiIDogIldpbmUgJiBMaXF1b3IiCiAgICAgIH0sIHsKICAgICAgICAidGV4dCIgOiAiNC02IHNraW4tb24gZmlsbGV0ZWQgKGJvbmVsZXNzKSBjaGlja2VuIHRoaWdocyIsCiAgICAgICAgIndlaWdodCIgOiA3NDUuMCwKICAgICAgICAiZm9vZENhdGVnb3J5IiA6ICJNZWF0cyIKICAgICAgfSwgewogICAgICAgICJ0ZXh0IiA6ICIyIHRhYmxlc3Bvb25zIG1pbGQgZmxhdm9yZWQgaG9uZXkgKG9yIG1hbHRvc2UpIiwKICAgICAgICAid2VpZ2h0IiA6IDQyLjAsCiAgICAgICAgImZvb2RDYXRlZ29yeSIgOiAiUGFudHJ5IgogICAgICB9LCB7CiAgICAgICAgInRleHQiIDogIjIgdGFibGVzcG9vbnMgZGFyayBzb3kgc2F1Y2UiLAogICAgICAgICJ3ZWlnaHQiIDogMzIuMCwKICAgICAgICAiZm9vZENhdGVnb3J5IiA6ICJQYW50cnkiCiAgICAgIH0sIHsKICAgICAgICAidGV4dCIgOiAiMiB0YWJsZXNwb29ucyBzYWtlIiwKICAgICAgICAid2VpZ2h0IiA6IDI5LjA5OTk5OTk5OTUwODAxLAogICAgICAgICJmb29kQ2F0ZWdvcnkiIDogIldpbmUsIEJlZXIgJiBMaXF1b3IiCiAgICAgIH0gXSwKICAgICAgImNhbG9yaWVzIiA6IDE5NTUuODUwOTk5OTk4MTc2MywKICAgICAgInRvdGFsV2VpZ2h0IiA6IDEwNDYuNTI0OTk5OTk5MjAxNiwKICAgICAgInRvdGFsVGltZSIgOiAwLjAsCiAgICAgICJ0b3RhbE51dHJpZW50cyIgOiB7CiAgICAgICAgIkVORVJDX0tDQUwiIDogewogICAgICAgICAgImxhYmVsIiA6ICJFbmVyZ3kiLAogICAgICAgICAgInF1YW50aXR5IiA6IDE5NTUuODUwOTk5OTk4MTc2MywKICAgICAgICAgICJ1bml0IiA6ICJrY2FsIgogICAgICAgIH0sCiAgICAgICAgIkZBVCIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkZhdCIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTI0LjEwOTMsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LAogICAgICAgICJGQVNBVCIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlNhdHVyYXRlZCIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMzMuNzUwNTE5OTk5OTk5OTk1LAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwKICAgICAgICAiRkFUUk4iIDogewogICAgICAgICAgImxhYmVsIiA6ICJUcmFucyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMC42MzMyNTAwMDAwMDAwMDAxLAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwKICAgICAgICAiRkFNUyIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIk1vbm91bnNhdHVyYXRlZCIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNTEuNzU5MzIsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LAogICAgICAgICJGQVBVIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiUG9seXVuc2F0dXJhdGVkIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAyNS45OTc0NzAwMDAwMDAwMDMsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LAogICAgICAgICJDSE9DREYiIDogewogICAgICAgICAgImxhYmVsIiA6ICJDYXJicyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNjAuMzQ5NTEyNDk5Njc0ODE2LAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwKICAgICAgICAiRklCVEciIDogewogICAgICAgICAgImxhYmVsIiA6ICJGaWJlciIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMC41OTYwMDAwMDAwMDAwMDAxLAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwKICAgICAgICAiU1VHQVIiIDogewogICAgICAgICAgImxhYmVsIiA6ICJTdWdhcnMiLAogICAgICAgICAgInF1YW50aXR5IiA6IDUyLjMzMTI3NDk5OTcwMjY5LAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwKICAgICAgICAiU1VHQVIuYWRkZWQiIDogewogICAgICAgICAgImxhYmVsIiA6ICJTdWdhcnMsIGFkZGVkIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA1Mi4wNzUyNzQ5OTk3MDI2OSwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sCiAgICAgICAgIlBST0NOVCIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlByb3RlaW4iLAogICAgICAgICAgInF1YW50aXR5IiA6IDEyOC43MjU4NDk5OTk5OTcyLAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwKICAgICAgICAiQ0hPTEUiIDogewogICAgICAgICAgImxhYmVsIiA6ICJDaG9sZXN0ZXJvbCIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNzMwLjEsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiTkEiIDogewogICAgICAgICAgImxhYmVsIiA6ICJTb2RpdW0iLAogICAgICAgICAgInF1YW50aXR5IiA6IDQxMzEuNjQyOTk5OTk5OTA0NSwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJDQSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkNhbGNpdW0iLAogICAgICAgICAgInF1YW50aXR5IiA6IDk3LjMzMzc0OTk5OTcyMTA1LAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIk1HIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiTWFnbmVzaXVtIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxODguNjUwMjQ5OTk5OTQyOSwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJLIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiUG90YXNzaXVtIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxODU4Ljg3MTI0OTk5OTQ2OTUsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiRkUiIDogewogICAgICAgICAgImxhYmVsIiA6ICJJcm9uIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA2LjM1Nzk4NzQ5OTk5NzMzMiwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJaTiIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlppbmMiLAogICAgICAgICAgInF1YW50aXR5IiA6IDEwLjI4ODc2NzQ5OTk5OTgwOSwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJQIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiUGhvc3Bob3J1cyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTI4MS44Mjg5OTk5OTk5NTgzLAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIlZJVEFfUkFFIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBBIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxNzEuMzUsCiAgICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICAgIH0sCiAgICAgICAgIlZJVEMiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEMiLAogICAgICAgICAgInF1YW50aXR5IiA6IDAuMjEsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiVEhJQSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlRoaWFtaW4gKEIxKSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMC41NjQ5NywKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJSSUJGIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiUmlib2ZsYXZpbiAoQjIpIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxLjIwMTgwOTk5OTk5OTk5OTgsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiTklBIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiTmlhY2luIChCMykiLAogICAgICAgICAgInF1YW50aXR5IiA6IDM1LjkzMjQ0NzQ5OTk5OTY3LAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIlZJVEI2QSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQjYiLAogICAgICAgICAgInF1YW50aXR5IiA6IDIuNjk3MzgxMjQ5OTk5ODc0LAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIkZPTERGRSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkZvbGF0ZSBlcXVpdmFsZW50ICh0b3RhbCkiLAogICAgICAgICAgInF1YW50aXR5IiA6IDMyLjMzMTI0OTk5OTk5Njk0LAogICAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgICB9LAogICAgICAgICJGT0xGRCIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkZvbGF0ZSAoZm9vZCkiLAogICAgICAgICAgInF1YW50aXR5IiA6IDMyLjMzMTI0OTk5OTk5Njk0LAogICAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgICB9LAogICAgICAgICJWSVRCMTIiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEIxMiIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNC42MTksCiAgICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICAgIH0sCiAgICAgICAgIlZJVEQiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEQiLAogICAgICAgICAgInF1YW50aXR5IiA6IDAuNzQ1MDAwMDAwMDAwMDAwMSwKICAgICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgICAgfSwKICAgICAgICAiVE9DUEhBIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBFIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxLjU2NDUsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiVklUSzEiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEsiLAogICAgICAgICAgInF1YW50aXR5IiA6IDE1LjY0NTAwMDAwMDAwMDAwMSwKICAgICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgICAgfQogICAgICB9LAogICAgICAidG90YWxEYWlseSIgOiB7CiAgICAgICAgIkVORVJDX0tDQUwiIDogewogICAgICAgICAgImxhYmVsIiA6ICJFbmVyZ3kiLAogICAgICAgICAgInF1YW50aXR5IiA6IDk3Ljc5MjU0OTk5OTkwODgxLAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiRkFUIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiRmF0IiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxOTAuOTM3Mzg0NjE1Mzg0NjIsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJGQVNBVCIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlNhdHVyYXRlZCIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTY4Ljc1MjU5OTk5OTk5OTk3LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiQ0hPQ0RGIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiQ2FyYnMiLAogICAgICAgICAgInF1YW50aXR5IiA6IDIwLjExNjUwNDE2NjU1ODI3MiwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIkZJQlRHIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiRmliZXIiLAogICAgICAgICAgInF1YW50aXR5IiA6IDIuMzg0MDAwMDAwMDAwMDAwMywKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlBST0NOVCIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlByb3RlaW4iLAogICAgICAgICAgInF1YW50aXR5IiA6IDI1Ny40NTE2OTk5OTk5OTQ0LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiQ0hPTEUiIDogewogICAgICAgICAgImxhYmVsIiA6ICJDaG9sZXN0ZXJvbCIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMjQzLjM2NjY2NjY2NjY2NjY3LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiTkEiIDogewogICAgICAgICAgImxhYmVsIiA6ICJTb2RpdW0iLAogICAgICAgICAgInF1YW50aXR5IiA6IDE3Mi4xNTE3OTE2NjY2NjI3LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiQ0EiIDogewogICAgICAgICAgImxhYmVsIiA6ICJDYWxjaXVtIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA5LjczMzM3NDk5OTk3MjEwNiwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIk1HIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiTWFnbmVzaXVtIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA0NC45MTY3MjYxOTA0NjI2LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiSyIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlBvdGFzc2l1bSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMzkuNTUwNDUyMTI3NjQ4Mjg1LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiRkUiIDogewogICAgICAgICAgImxhYmVsIiA6ICJJcm9uIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAzNS4zMjIxNTI3Nzc3NjI5NiwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlpOIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiWmluYyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogOTMuNTM0MjQ5OTk5OTk4MjUsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJQIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiUGhvc3Bob3J1cyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTgzLjExODQyODU3MTQyMjYsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJWSVRBX1JBRSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTkuMDM4ODg4ODg4ODg4ODg4LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiVklUQyIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMC4yMzMzMzMzMzMzMzMzMzMzNCwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlRISUEiIDogewogICAgICAgICAgImxhYmVsIiA6ICJUaGlhbWluIChCMSkiLAogICAgICAgICAgInF1YW50aXR5IiA6IDQ3LjA4MDgzMzMzMzMzMzM0LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiUklCRiIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlJpYm9mbGF2aW4gKEIyKSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogOTIuNDQ2OTIzMDc2OTIzMDYsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJOSUEiIDogewogICAgICAgICAgImxhYmVsIiA6ICJOaWFjaW4gKEIzKSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMjI0LjU3Nzc5Njg3NDk5NzkyLAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiVklUQjZBIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBCNiIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMjA3LjQ5MDg2NTM4NDYwNTY4LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiRk9MREZFIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiRm9sYXRlIGVxdWl2YWxlbnQgKHRvdGFsKSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogOC4wODI4MTI0OTk5OTkyMzUsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJWSVRCMTIiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEIxMiIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTkyLjQ1ODMzMzMzMzMzMzM0LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiVklURCIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gRCIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNC45NjY2NjY2NjY2NjY2NjgsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJUT0NQSEEiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEUiLAogICAgICAgICAgInF1YW50aXR5IiA6IDEwLjQzLAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiVklUSzEiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEsiLAogICAgICAgICAgInF1YW50aXR5IiA6IDEzLjAzNzUwMDAwMDAwMDAwMSwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0KICAgICAgfSwKICAgICAgImRpZ2VzdCIgOiBbIHsKICAgICAgICAibGFiZWwiIDogIkZhdCIsCiAgICAgICAgInRhZyIgOiAiRkFUIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6ICJmYXRDb250ZW50IiwKICAgICAgICAidG90YWwiIDogMTI0LjEwOTMsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAxOTAuOTM3Mzg0NjE1Mzg0NjIsCiAgICAgICAgInVuaXQiIDogImciLAogICAgICAgICJzdWIiIDogWyB7CiAgICAgICAgICAibGFiZWwiIDogIlNhdHVyYXRlZCIsCiAgICAgICAgICAidGFnIiA6ICJGQVNBVCIsCiAgICAgICAgICAic2NoZW1hT3JnVGFnIiA6ICJzYXR1cmF0ZWRGYXRDb250ZW50IiwKICAgICAgICAgICJ0b3RhbCIgOiAzMy43NTA1MTk5OTk5OTk5OTUsCiAgICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgICAiZGFpbHkiIDogMTY4Ljc1MjU5OTk5OTk5OTk3LAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwgewogICAgICAgICAgImxhYmVsIiA6ICJUcmFucyIsCiAgICAgICAgICAidGFnIiA6ICJGQVRSTiIsCiAgICAgICAgICAic2NoZW1hT3JnVGFnIiA6ICJ0cmFuc0ZhdENvbnRlbnQiLAogICAgICAgICAgInRvdGFsIiA6IDAuNjMzMjUwMDAwMDAwMDAwMSwKICAgICAgICAgICJoYXNSREkiIDogZmFsc2UsCiAgICAgICAgICAiZGFpbHkiIDogMC4wLAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwgewogICAgICAgICAgImxhYmVsIiA6ICJNb25vdW5zYXR1cmF0ZWQiLAogICAgICAgICAgInRhZyIgOiAiRkFNUyIsCiAgICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgICAidG90YWwiIDogNTEuNzU5MzIsCiAgICAgICAgICAiaGFzUkRJIiA6IGZhbHNlLAogICAgICAgICAgImRhaWx5IiA6IDAuMCwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sIHsKICAgICAgICAgICJsYWJlbCIgOiAiUG9seXVuc2F0dXJhdGVkIiwKICAgICAgICAgICJ0YWciIDogIkZBUFUiLAogICAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICAgInRvdGFsIiA6IDI1Ljk5NzQ3MDAwMDAwMDAwMywKICAgICAgICAgICJoYXNSREkiIDogZmFsc2UsCiAgICAgICAgICAiZGFpbHkiIDogMC4wLAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSBdCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIkNhcmJzIiwKICAgICAgICAidGFnIiA6ICJDSE9DREYiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogImNhcmJvaHlkcmF0ZUNvbnRlbnQiLAogICAgICAgICJ0b3RhbCIgOiA2MC4zNDk1MTI0OTk2NzQ4MTYsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAyMC4xMTY1MDQxNjY1NTgyNzIsCiAgICAgICAgInVuaXQiIDogImciLAogICAgICAgICJzdWIiIDogWyB7CiAgICAgICAgICAibGFiZWwiIDogIkNhcmJzIChuZXQpIiwKICAgICAgICAgICJ0YWciIDogIkNIT0NERi5uZXQiLAogICAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICAgInRvdGFsIiA6IDU5Ljc1MzUxMjQ5OTY3NDgxLAogICAgICAgICAgImhhc1JESSIgOiBmYWxzZSwKICAgICAgICAgICJkYWlseSIgOiAwLjAsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LCB7CiAgICAgICAgICAibGFiZWwiIDogIkZpYmVyIiwKICAgICAgICAgICJ0YWciIDogIkZJQlRHIiwKICAgICAgICAgICJzY2hlbWFPcmdUYWciIDogImZpYmVyQ29udGVudCIsCiAgICAgICAgICAidG90YWwiIDogMC41OTYwMDAwMDAwMDAwMDAxLAogICAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICAgImRhaWx5IiA6IDIuMzg0MDAwMDAwMDAwMDAwMywKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sIHsKICAgICAgICAgICJsYWJlbCIgOiAiU3VnYXJzIiwKICAgICAgICAgICJ0YWciIDogIlNVR0FSIiwKICAgICAgICAgICJzY2hlbWFPcmdUYWciIDogInN1Z2FyQ29udGVudCIsCiAgICAgICAgICAidG90YWwiIDogNTIuMzMxMjc0OTk5NzAyNjksCiAgICAgICAgICAiaGFzUkRJIiA6IGZhbHNlLAogICAgICAgICAgImRhaWx5IiA6IDAuMCwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sIHsKICAgICAgICAgICJsYWJlbCIgOiAiU3VnYXJzLCBhZGRlZCIsCiAgICAgICAgICAidGFnIiA6ICJTVUdBUi5hZGRlZCIsCiAgICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgICAidG90YWwiIDogNTIuMDc1Mjc0OTk5NzAyNjksCiAgICAgICAgICAiaGFzUkRJIiA6IGZhbHNlLAogICAgICAgICAgImRhaWx5IiA6IDAuMCwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0gXQogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJQcm90ZWluIiwKICAgICAgICAidGFnIiA6ICJQUk9DTlQiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogInByb3RlaW5Db250ZW50IiwKICAgICAgICAidG90YWwiIDogMTI4LjcyNTg0OTk5OTk5NzIsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAyNTcuNDUxNjk5OTk5OTk0NCwKICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiQ2hvbGVzdGVyb2wiLAogICAgICAgICJ0YWciIDogIkNIT0xFIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6ICJjaG9sZXN0ZXJvbENvbnRlbnQiLAogICAgICAgICJ0b3RhbCIgOiA3MzAuMSwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDI0My4zNjY2NjY2NjY2NjY2NywKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlNvZGl1bSIsCiAgICAgICAgInRhZyIgOiAiTkEiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogInNvZGl1bUNvbnRlbnQiLAogICAgICAgICJ0b3RhbCIgOiA0MTMxLjY0Mjk5OTk5OTkwNDUsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAxNzIuMTUxNzkxNjY2NjYyNywKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIkNhbGNpdW0iLAogICAgICAgICJ0YWciIDogIkNBIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDk3LjMzMzc0OTk5OTcyMTA1LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogOS43MzMzNzQ5OTk5NzIxMDYsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJNYWduZXNpdW0iLAogICAgICAgICJ0YWciIDogIk1HIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDE4OC42NTAyNDk5OTk5NDI5LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogNDQuOTE2NzI2MTkwNDYyNiwKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlBvdGFzc2l1bSIsCiAgICAgICAgInRhZyIgOiAiSyIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAxODU4Ljg3MTI0OTk5OTQ2OTUsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAzOS41NTA0NTIxMjc2NDgyODUsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJJcm9uIiwKICAgICAgICAidGFnIiA6ICJGRSIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiA2LjM1Nzk4NzQ5OTk5NzMzMiwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDM1LjMyMjE1Mjc3Nzc2Mjk2LAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiWmluYyIsCiAgICAgICAgInRhZyIgOiAiWk4iLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMTAuMjg4NzY3NDk5OTk5ODA5LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogOTMuNTM0MjQ5OTk5OTk4MjUsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJQaG9zcGhvcnVzIiwKICAgICAgICAidGFnIiA6ICJQIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDEyODEuODI4OTk5OTk5OTU4MywKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDE4My4xMTg0Mjg1NzE0MjI2LAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBBIiwKICAgICAgICAidGFnIiA6ICJWSVRBX1JBRSIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAxNzEuMzUsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAxOS4wMzg4ODg4ODg4ODg4ODgsCiAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBDIiwKICAgICAgICAidGFnIiA6ICJWSVRDIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDAuMjEsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAwLjIzMzMzMzMzMzMzMzMzMzM0LAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiVGhpYW1pbiAoQjEpIiwKICAgICAgICAidGFnIiA6ICJUSElBIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDAuNTY0OTcsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiA0Ny4wODA4MzMzMzMzMzMzNCwKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlJpYm9mbGF2aW4gKEIyKSIsCiAgICAgICAgInRhZyIgOiAiUklCRiIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAxLjIwMTgwOTk5OTk5OTk5OTgsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiA5Mi40NDY5MjMwNzY5MjMwNiwKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIk5pYWNpbiAoQjMpIiwKICAgICAgICAidGFnIiA6ICJOSUEiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMzUuOTMyNDQ3NDk5OTk5NjcsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAyMjQuNTc3Nzk2ODc0OTk3OTIsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEI2IiwKICAgICAgICAidGFnIiA6ICJWSVRCNkEiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMi42OTczODEyNDk5OTk4NzQsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAyMDcuNDkwODY1Mzg0NjA1NjgsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJGb2xhdGUgZXF1aXZhbGVudCAodG90YWwpIiwKICAgICAgICAidGFnIiA6ICJGT0xERkUiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMzIuMzMxMjQ5OTk5OTk2OTQsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiA4LjA4MjgxMjQ5OTk5OTIzNSwKICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJGb2xhdGUgKGZvb2QpIiwKICAgICAgICAidGFnIiA6ICJGT0xGRCIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAzMi4zMzEyNDk5OTk5OTY5NCwKICAgICAgICAiaGFzUkRJIiA6IGZhbHNlLAogICAgICAgICJkYWlseSIgOiAwLjAsCiAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiRm9saWMgYWNpZCIsCiAgICAgICAgInRhZyIgOiAiRk9MQUMiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMC4wLAogICAgICAgICJoYXNSREkiIDogZmFsc2UsCiAgICAgICAgImRhaWx5IiA6IDAuMCwKICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEIxMiIsCiAgICAgICAgInRhZyIgOiAiVklUQjEyIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDQuNjE5LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMTkyLjQ1ODMzMzMzMzMzMzM0LAogICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gRCIsCiAgICAgICAgInRhZyIgOiAiVklURCIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAwLjc0NTAwMDAwMDAwMDAwMDEsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiA0Ljk2NjY2NjY2NjY2NjY2OCwKICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEUiLAogICAgICAgICJ0YWciIDogIlRPQ1BIQSIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAxLjU2NDUsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAxMC40MywKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gSyIsCiAgICAgICAgInRhZyIgOiAiVklUSzEiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMTUuNjQ1MDAwMDAwMDAwMDAxLAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMTMuMDM3NTAwMDAwMDAwMDAxLAogICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgIH0gXQogICAgfSwKICAgICJib29rbWFya2VkIiA6IGZhbHNlLAogICAgImJvdWdodCIgOiBmYWxzZQogIH0sIHsKICAgICJyZWNpcGUiIDogewogICAgICAidXJpIiA6ICJodHRwOi8vd3d3LmVkYW1hbS5jb20vb250b2xvZ2llcy9lZGFtYW0ub3dsI3JlY2lwZV84ODhlOWZjNGE4MDhlOWU0Y2NkYjJhYzI0YTZhMmY0NiIsCiAgICAgICJsYWJlbCIgOiAiQ2hpY2tlbiBUZXJpeWFraSIsCiAgICAgICJpbWFnZSIgOiAiaHR0cHM6Ly93d3cuZWRhbWFtLmNvbS93ZWItaW1nLzU1MS81NTFiOTA2YmFmZDRjNDVkNTAwMzM3NDJlYWYwMGMwMi5qcGciLAogICAgICAic291cmNlIiA6ICJTYXZldXIiLAogICAgICAidXJsIiA6ICJodHRwOi8vd3d3LnNhdmV1ci5jb20vYXJ0aWNsZS9SZWNpcGVzL0NoaWNrZW4tVGVyaXlha2kiLAogICAgICAic2hhcmVBcyIgOiAiaHR0cDovL3d3dy5lZGFtYW0uY29tL3JlY2lwZS9jaGlja2VuLXRlcml5YWtpLTg4OGU5ZmM0YTgwOGU5ZTRjY2RiMmFjMjRhNmEyZjQ2L2NoaWNrZW4iLAogICAgICAieWllbGQiIDogMi4wLAogICAgICAiZGlldExhYmVscyIgOiBbICJMb3ctQ2FyYiIgXSwKICAgICAgImhlYWx0aExhYmVscyIgOiBbICJQZWFudXQtRnJlZSIsICJUcmVlLU51dC1GcmVlIiwgIkFsY29ob2wtRnJlZSIgXSwKICAgICAgImNhdXRpb25zIiA6IFsgXSwKICAgICAgImluZ3JlZGllbnRMaW5lcyIgOiBbICIxIHRic3AuIHZlZ2V0YWJsZSBvaWwiLCAiNCBwaWVjZXMgY2hpY2tlbiwgdHJpbW1lZCwgc2tpbiBwaWVyY2VkIHdpdGggYSBmb3JrIiwgIsK9IGN1cCBUZXJpeWFraSBTYXVjZSIgXSwKICAgICAgImluZ3JlZGllbnRzIiA6IFsgewogICAgICAgICJ0ZXh0IiA6ICIxIHRic3AuIHZlZ2V0YWJsZSBvaWwiLAogICAgICAgICJ3ZWlnaHQiIDogMTQuMCwKICAgICAgICAiZm9vZENhdGVnb3J5IiA6ICJQYW50cnkiCiAgICAgIH0sIHsKICAgICAgICAidGV4dCIgOiAiNCBwaWVjZXMgY2hpY2tlbiwgdHJpbW1lZCwgc2tpbiBwaWVyY2VkIHdpdGggYSBmb3JrIiwKICAgICAgICAid2VpZ2h0IiA6IDM1Ny42LAogICAgICAgICJmb29kQ2F0ZWdvcnkiIDogIk1lYXRzIgogICAgICB9LCB7CiAgICAgICAgInRleHQiIDogIsK9IGN1cCBUZXJpeWFraSBTYXVjZSIsCiAgICAgICAgIndlaWdodCIgOiAxNDQuMCwKICAgICAgICAiZm9vZENhdGVnb3J5IiA6ICJQYW50cnkiCiAgICAgIH0gXSwKICAgICAgImNhbG9yaWVzIiA6IDEwMjAuNzYwMDAwMDAwMDAwMSwKICAgICAgInRvdGFsV2VpZ2h0IiA6IDUxNS42LAogICAgICAidG90YWxUaW1lIiA6IDAuMCwKICAgICAgInRvdGFsTnV0cmllbnRzIiA6IHsKICAgICAgICAiRU5FUkNfS0NBTCIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkVuZXJneSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTAyMC43NjAwMDAwMDAwMDAxLAogICAgICAgICAgInVuaXQiIDogImtjYWwiCiAgICAgICAgfSwKICAgICAgICAiRkFUIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiRmF0IiwKICAgICAgICAgICJxdWFudGl0eSIgOiA2Ny44ODMzNjAwMDAwMDAwMSwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sCiAgICAgICAgIkZBU0FUIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiU2F0dXJhdGVkIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxNi4zMjQxLAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwKICAgICAgICAiRkFUUk4iIDogewogICAgICAgICAgImxhYmVsIiA6ICJUcmFucyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMC40NTQyNTIwMDAwMDAwMDAxLAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwKICAgICAgICAiRkFNUyIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIk1vbm91bnNhdHVyYXRlZCIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMzIuMzkyOTgwMDAwMDAwMDEsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LAogICAgICAgICJGQVBVIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiUG9seXVuc2F0dXJhdGVkIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxMy45NDQyMDAwMDAwMDAwMDIsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LAogICAgICAgICJDSE9DREYiIDogewogICAgICAgICAgImxhYmVsIiA6ICJDYXJicyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMjIuNDA2NCwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sCiAgICAgICAgIkZJQlRHIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiRmliZXIiLAogICAgICAgICAgInF1YW50aXR5IiA6IDAuMTQ0LAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwKICAgICAgICAiU1VHQVIiIDogewogICAgICAgICAgImxhYmVsIiA6ICJTdWdhcnMiLAogICAgICAgICAgInF1YW50aXR5IiA6IDIwLjMwNCwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sCiAgICAgICAgIlBST0NOVCIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlByb3RlaW4iLAogICAgICAgICAgInF1YW50aXR5IiA6IDc1LjA1MjgsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LAogICAgICAgICJDSE9MRSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkNob2xlc3Rlcm9sIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAyNjguMjAwMDAwMDAwMDAwMDUsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiTkEiIDogewogICAgICAgICAgImxhYmVsIiA6ICJTb2RpdW0iLAogICAgICAgICAgInF1YW50aXR5IiA6IDU3NjkuODM5OTk5OTk5OTk5LAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIkNBIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiQ2FsY2l1bSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNzUuMzM2MDAwMDAwMDAwMDEsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiTUciIDogewogICAgICAgICAgImxhYmVsIiA6ICJNYWduZXNpdW0iLAogICAgICAgICAgInF1YW50aXR5IiA6IDE1OS4zNiwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJLIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiUG90YXNzaXVtIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA5OTkuODY0MDAwMDAwMDAwMSwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJGRSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIklyb24iLAogICAgICAgICAgInF1YW50aXR5IiA6IDUuNjY2NCwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJaTiIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlppbmMiLAogICAgICAgICAgInF1YW50aXR5IiA6IDQuODI4NTYwMDAwMDAwMDAxLAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIlAiIDogewogICAgICAgICAgImxhYmVsIiA6ICJQaG9zcGhvcnVzIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA3NDcuNDMyLAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIlZJVEFfUkFFIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBBIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxNDYuNjE2LAogICAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgICB9LAogICAgICAgICJWSVRDIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBDIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA1LjcyMTYwMDAwMDAwMDAwMSwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJUSElBIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVGhpYW1pbiAoQjEpIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAwLjI1Nzc2MDAwMDAwMDAwMDA0LAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIlJJQkYiIDogewogICAgICAgICAgImxhYmVsIiA6ICJSaWJvZmxhdmluIChCMikiLAogICAgICAgICAgInF1YW50aXR5IiA6IDAuNTI5OTIwMDAwMDAwMDAwMSwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJOSUEiIDogewogICAgICAgICAgImxhYmVsIiA6ICJOaWFjaW4gKEIzKSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMjYuMTQ5MTc2MDAwMDAwMDA0LAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIlZJVEI2QSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQjYiLAogICAgICAgICAgInF1YW50aXR5IiA6IDEuMzk1NiwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJGT0xERkUiIDogewogICAgICAgICAgImxhYmVsIiA6ICJGb2xhdGUgZXF1aXZhbGVudCAodG90YWwpIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAzMi45NzYsCiAgICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICAgIH0sCiAgICAgICAgIkZPTEZEIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiRm9sYXRlIChmb29kKSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMzIuOTc2LAogICAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgICB9LAogICAgICAgICJWSVRCMTIiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEIxMiIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMS4xMDg1NjAwMDAwMDAwMDAyLAogICAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgICB9LAogICAgICAgICJWSVREIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBEIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAwLjcxNTIwMDAwMDAwMDAwMDIsCiAgICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICAgIH0sCiAgICAgICAgIlRPQ1BIQSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gRSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNC4xMjQ4MDAwMDAwMDAwMDA1LAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIlZJVEsxIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBLIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA1LjM2NDAwMDAwMDAwMDAwMSwKICAgICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgICAgfQogICAgICB9LAogICAgICAidG90YWxEYWlseSIgOiB7CiAgICAgICAgIkVORVJDX0tDQUwiIDogewogICAgICAgICAgImxhYmVsIiA6ICJFbmVyZ3kiLAogICAgICAgICAgInF1YW50aXR5IiA6IDUxLjAzODAwMDAwMDAwMDAwNCwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIkZBVCIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkZhdCIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTA0LjQzNTkzODQ2MTUzODQ4LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiRkFTQVQiIDogewogICAgICAgICAgImxhYmVsIiA6ICJTYXR1cmF0ZWQiLAogICAgICAgICAgInF1YW50aXR5IiA6IDgxLjYyMDUsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJDSE9DREYiIDogewogICAgICAgICAgImxhYmVsIiA6ICJDYXJicyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNy40Njg4MDAwMDAwMDAwMDEsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJGSUJURyIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkZpYmVyIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAwLjU3NiwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlBST0NOVCIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlByb3RlaW4iLAogICAgICAgICAgInF1YW50aXR5IiA6IDE1MC4xMDU2LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiQ0hPTEUiIDogewogICAgICAgICAgImxhYmVsIiA6ICJDaG9sZXN0ZXJvbCIsCiAgICAgICAgICAicXVhbnRpdHkiIDogODkuNCwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIk5BIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiU29kaXVtIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAyNDAuNDA5OTk5OTk5OTk5OTQsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJDQSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkNhbGNpdW0iLAogICAgICAgICAgInF1YW50aXR5IiA6IDcuNTMzNjAwMDAwMDAwMDAyLAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiTUciIDogewogICAgICAgICAgImxhYmVsIiA6ICJNYWduZXNpdW0iLAogICAgICAgICAgInF1YW50aXR5IiA6IDM3Ljk0Mjg1NzE0Mjg1NzE1LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiSyIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlBvdGFzc2l1bSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMjEuMjczNzAyMTI3NjU5NTc1LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiRkUiIDogewogICAgICAgICAgImxhYmVsIiA6ICJJcm9uIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAzMS40OCwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlpOIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiWmluYyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNDMuODk2MDAwMDAwMDAwMDEsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJQIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiUGhvc3Bob3J1cyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTA2Ljc3NiwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlZJVEFfUkFFIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBBIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxNi4yOTA2NjY2NjY2NjY2NywKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlZJVEMiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEMiLAogICAgICAgICAgInF1YW50aXR5IiA6IDYuMzU3MzMzMzMzMzMzMzM0LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiVEhJQSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlRoaWFtaW4gKEIxKSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMjEuNDgwMDAwMDAwMDAwMDA0LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiUklCRiIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlJpYm9mbGF2aW4gKEIyKSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNDAuNzYzMDc2OTIzMDc2OTIsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJOSUEiIDogewogICAgICAgICAgImxhYmVsIiA6ICJOaWFjaW4gKEIzKSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTYzLjQzMjM1LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiVklUQjZBIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBCNiIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTA3LjM1Mzg0NjE1Mzg0NjE1LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiRk9MREZFIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiRm9sYXRlIGVxdWl2YWxlbnQgKHRvdGFsKSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogOC4yNDQsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJWSVRCMTIiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEIxMiIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNDYuMTkwMDAwMDAwMDAwMDEsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJWSVREIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBEIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA0Ljc2ODAwMDAwMDAwMDAwMSwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlRPQ1BIQSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gRSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMjcuNDk4NjY2NjY2NjY2NjcsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJWSVRLMSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gSyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNC40NzAwMDAwMDAwMDAwMDEsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9CiAgICAgIH0sCiAgICAgICJkaWdlc3QiIDogWyB7CiAgICAgICAgImxhYmVsIiA6ICJGYXQiLAogICAgICAgICJ0YWciIDogIkZBVCIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiAiZmF0Q29udGVudCIsCiAgICAgICAgInRvdGFsIiA6IDY3Ljg4MzM2MDAwMDAwMDAxLAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMTA0LjQzNTkzODQ2MTUzODQ4LAogICAgICAgICJ1bml0IiA6ICJnIiwKICAgICAgICAic3ViIiA6IFsgewogICAgICAgICAgImxhYmVsIiA6ICJTYXR1cmF0ZWQiLAogICAgICAgICAgInRhZyIgOiAiRkFTQVQiLAogICAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiAic2F0dXJhdGVkRmF0Q29udGVudCIsCiAgICAgICAgICAidG90YWwiIDogMTYuMzI0MSwKICAgICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAgICJkYWlseSIgOiA4MS42MjA1LAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwgewogICAgICAgICAgImxhYmVsIiA6ICJUcmFucyIsCiAgICAgICAgICAidGFnIiA6ICJGQVRSTiIsCiAgICAgICAgICAic2NoZW1hT3JnVGFnIiA6ICJ0cmFuc0ZhdENvbnRlbnQiLAogICAgICAgICAgInRvdGFsIiA6IDAuNDU0MjUyMDAwMDAwMDAwMSwKICAgICAgICAgICJoYXNSREkiIDogZmFsc2UsCiAgICAgICAgICAiZGFpbHkiIDogMC4wLAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwgewogICAgICAgICAgImxhYmVsIiA6ICJNb25vdW5zYXR1cmF0ZWQiLAogICAgICAgICAgInRhZyIgOiAiRkFNUyIsCiAgICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgICAidG90YWwiIDogMzIuMzkyOTgwMDAwMDAwMDEsCiAgICAgICAgICAiaGFzUkRJIiA6IGZhbHNlLAogICAgICAgICAgImRhaWx5IiA6IDAuMCwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sIHsKICAgICAgICAgICJsYWJlbCIgOiAiUG9seXVuc2F0dXJhdGVkIiwKICAgICAgICAgICJ0YWciIDogIkZBUFUiLAogICAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICAgInRvdGFsIiA6IDEzLjk0NDIwMDAwMDAwMDAwMiwKICAgICAgICAgICJoYXNSREkiIDogZmFsc2UsCiAgICAgICAgICAiZGFpbHkiIDogMC4wLAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSBdCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIkNhcmJzIiwKICAgICAgICAidGFnIiA6ICJDSE9DREYiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogImNhcmJvaHlkcmF0ZUNvbnRlbnQiLAogICAgICAgICJ0b3RhbCIgOiAyMi40MDY0LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogNy40Njg4MDAwMDAwMDAwMDEsCiAgICAgICAgInVuaXQiIDogImciLAogICAgICAgICJzdWIiIDogWyB7CiAgICAgICAgICAibGFiZWwiIDogIkNhcmJzIChuZXQpIiwKICAgICAgICAgICJ0YWciIDogIkNIT0NERi5uZXQiLAogICAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICAgInRvdGFsIiA6IDIyLjI2MjQwMDAwMDAwMDAwMywKICAgICAgICAgICJoYXNSREkiIDogZmFsc2UsCiAgICAgICAgICAiZGFpbHkiIDogMC4wLAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwgewogICAgICAgICAgImxhYmVsIiA6ICJGaWJlciIsCiAgICAgICAgICAidGFnIiA6ICJGSUJURyIsCiAgICAgICAgICAic2NoZW1hT3JnVGFnIiA6ICJmaWJlckNvbnRlbnQiLAogICAgICAgICAgInRvdGFsIiA6IDAuMTQ0LAogICAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICAgImRhaWx5IiA6IDAuNTc2LAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwgewogICAgICAgICAgImxhYmVsIiA6ICJTdWdhcnMiLAogICAgICAgICAgInRhZyIgOiAiU1VHQVIiLAogICAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiAic3VnYXJDb250ZW50IiwKICAgICAgICAgICJ0b3RhbCIgOiAyMC4zMDQsCiAgICAgICAgICAiaGFzUkRJIiA6IGZhbHNlLAogICAgICAgICAgImRhaWx5IiA6IDAuMCwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sIHsKICAgICAgICAgICJsYWJlbCIgOiAiU3VnYXJzLCBhZGRlZCIsCiAgICAgICAgICAidGFnIiA6ICJTVUdBUi5hZGRlZCIsCiAgICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgICAidG90YWwiIDogMC4wLAogICAgICAgICAgImhhc1JESSIgOiBmYWxzZSwKICAgICAgICAgICJkYWlseSIgOiAwLjAsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9IF0KICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiUHJvdGVpbiIsCiAgICAgICAgInRhZyIgOiAiUFJPQ05UIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6ICJwcm90ZWluQ29udGVudCIsCiAgICAgICAgInRvdGFsIiA6IDc1LjA1MjgsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAxNTAuMTA1NiwKICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiQ2hvbGVzdGVyb2wiLAogICAgICAgICJ0YWciIDogIkNIT0xFIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6ICJjaG9sZXN0ZXJvbENvbnRlbnQiLAogICAgICAgICJ0b3RhbCIgOiAyNjguMjAwMDAwMDAwMDAwMDUsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiA4OS40LAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiU29kaXVtIiwKICAgICAgICAidGFnIiA6ICJOQSIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiAic29kaXVtQ29udGVudCIsCiAgICAgICAgInRvdGFsIiA6IDU3NjkuODM5OTk5OTk5OTk5LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMjQwLjQwOTk5OTk5OTk5OTk0LAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiQ2FsY2l1bSIsCiAgICAgICAgInRhZyIgOiAiQ0EiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogNzUuMzM2MDAwMDAwMDAwMDEsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiA3LjUzMzYwMDAwMDAwMDAwMiwKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIk1hZ25lc2l1bSIsCiAgICAgICAgInRhZyIgOiAiTUciLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMTU5LjM2LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMzcuOTQyODU3MTQyODU3MTUsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJQb3Rhc3NpdW0iLAogICAgICAgICJ0YWciIDogIksiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogOTk5Ljg2NDAwMDAwMDAwMDEsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAyMS4yNzM3MDIxMjc2NTk1NzUsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJJcm9uIiwKICAgICAgICAidGFnIiA6ICJGRSIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiA1LjY2NjQsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAzMS40OCwKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlppbmMiLAogICAgICAgICJ0YWciIDogIlpOIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDQuODI4NTYwMDAwMDAwMDAxLAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogNDMuODk2MDAwMDAwMDAwMDEsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJQaG9zcGhvcnVzIiwKICAgICAgICAidGFnIiA6ICJQIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDc0Ny40MzIsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAxMDYuNzc2LAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBBIiwKICAgICAgICAidGFnIiA6ICJWSVRBX1JBRSIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAxNDYuNjE2LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMTYuMjkwNjY2NjY2NjY2NjcsCiAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBDIiwKICAgICAgICAidGFnIiA6ICJWSVRDIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDUuNzIxNjAwMDAwMDAwMDAxLAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogNi4zNTczMzMzMzMzMzMzMzQsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJUaGlhbWluIChCMSkiLAogICAgICAgICJ0YWciIDogIlRISUEiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMC4yNTc3NjAwMDAwMDAwMDAwNCwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDIxLjQ4MDAwMDAwMDAwMDAwNCwKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlJpYm9mbGF2aW4gKEIyKSIsCiAgICAgICAgInRhZyIgOiAiUklCRiIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAwLjUyOTkyMDAwMDAwMDAwMDEsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiA0MC43NjMwNzY5MjMwNzY5MiwKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIk5pYWNpbiAoQjMpIiwKICAgICAgICAidGFnIiA6ICJOSUEiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMjYuMTQ5MTc2MDAwMDAwMDA0LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMTYzLjQzMjM1LAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBCNiIsCiAgICAgICAgInRhZyIgOiAiVklUQjZBIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDEuMzk1NiwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDEwNy4zNTM4NDYxNTM4NDYxNSwKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIkZvbGF0ZSBlcXVpdmFsZW50ICh0b3RhbCkiLAogICAgICAgICJ0YWciIDogIkZPTERGRSIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAzMi45NzYsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiA4LjI0NCwKICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJGb2xhdGUgKGZvb2QpIiwKICAgICAgICAidGFnIiA6ICJGT0xGRCIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAzMi45NzYsCiAgICAgICAgImhhc1JESSIgOiBmYWxzZSwKICAgICAgICAiZGFpbHkiIDogMC4wLAogICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIkZvbGljIGFjaWQiLAogICAgICAgICJ0YWciIDogIkZPTEFDIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDAuMCwKICAgICAgICAiaGFzUkRJIiA6IGZhbHNlLAogICAgICAgICJkYWlseSIgOiAwLjAsCiAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBCMTIiLAogICAgICAgICJ0YWciIDogIlZJVEIxMiIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAxLjEwODU2MDAwMDAwMDAwMDIsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiA0Ni4xOTAwMDAwMDAwMDAwMSwKICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEQiLAogICAgICAgICJ0YWciIDogIlZJVEQiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMC43MTUyMDAwMDAwMDAwMDAyLAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogNC43NjgwMDAwMDAwMDAwMDEsCiAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBFIiwKICAgICAgICAidGFnIiA6ICJUT0NQSEEiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogNC4xMjQ4MDAwMDAwMDAwMDA1LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMjcuNDk4NjY2NjY2NjY2NjcsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEsiLAogICAgICAgICJ0YWciIDogIlZJVEsxIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDUuMzY0MDAwMDAwMDAwMDAxLAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogNC40NzAwMDAwMDAwMDAwMDEsCiAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgfSBdCiAgICB9LAogICAgImJvb2ttYXJrZWQiIDogZmFsc2UsCiAgICAiYm91Z2h0IiA6IGZhbHNlCiAgfSwgewogICAgInJlY2lwZSIgOiB7CiAgICAgICJ1cmkiIDogImh0dHA6Ly93d3cuZWRhbWFtLmNvbS9vbnRvbG9naWVzL2VkYW1hbS5vd2wjcmVjaXBlXzE0ZWJkN2Q2ZDY1Zjc2MTg0M2RiYTM1MjAyZGU0YjM3IiwKICAgICAgImxhYmVsIiA6ICJDaGlja2VuIFNhdGF5IiwKICAgICAgImltYWdlIiA6ICJodHRwczovL3d3dy5lZGFtYW0uY29tL3dlYi1pbWcvYmE2L2JhNmY2NmQ4ODVlNGQ2MmE5ODA1NWIwODhhNWE4NWEzLmpwZyIsCiAgICAgICJzb3VyY2UiIDogIkJCQyBHb29kIEZvb2QiLAogICAgICAidXJsIiA6ICJodHRwOi8vd3d3LmJiY2dvb2Rmb29kLmNvbS9yZWNpcGVzLzM2NDUvIiwKICAgICAgInNoYXJlQXMiIDogImh0dHA6Ly93d3cuZWRhbWFtLmNvbS9yZWNpcGUvY2hpY2tlbi1zYXRheS0xNGViZDdkNmQ2NWY3NjE4NDNkYmEzNTIwMmRlNGIzNy9jaGlja2VuIiwKICAgICAgInlpZWxkIiA6IDQuMCwKICAgICAgImRpZXRMYWJlbHMiIDogWyAiSGlnaC1Qcm90ZWluIiwgIkxvdy1DYXJiIiBdLAogICAgICAiaGVhbHRoTGFiZWxzIiA6IFsgIlN1Z2FyLUNvbnNjaW91cyIsICJUcmVlLU51dC1GcmVlIiwgIkFsY29ob2wtRnJlZSIgXSwKICAgICAgImNhdXRpb25zIiA6IFsgXSwKICAgICAgImluZ3JlZGllbnRMaW5lcyIgOiBbICIxMDAuMG1sIHNveSBzYXVjZSAoS2lra29tYW4gaXMgZ29vZCkiLCAiNC4wIHRic3Agc21vb3RoIHBlYW51dCBidXR0ZXIiLCAiNCBza2lubGVzcyBjaGlja2VuIGJyZWFzdHMgZmlsbGV0cyIgXSwKICAgICAgImluZ3JlZGllbnRzIiA6IFsgewogICAgICAgICJ0ZXh0IiA6ICIxMDAuMG1sIHNveSBzYXVjZSAoS2lra29tYW4gaXMgZ29vZCkiLAogICAgICAgICJ3ZWlnaHQiIDogMTA3Ljc4MjE5NzM2MjEyNDU1LAogICAgICAgICJmb29kQ2F0ZWdvcnkiIDogIlBhbnRyeSIKICAgICAgfSwgewogICAgICAgICJ0ZXh0IiA6ICI0LjAgdGJzcCBzbW9vdGggcGVhbnV0IGJ1dHRlciIsCiAgICAgICAgIndlaWdodCIgOiA2NC4wLAogICAgICAgICJmb29kQ2F0ZWdvcnkiIDogIlBhbnRyeSIKICAgICAgfSwgewogICAgICAgICJ0ZXh0IiA6ICI0IHNraW5sZXNzIGNoaWNrZW4gYnJlYXN0cyBmaWxsZXRzIiwKICAgICAgICAid2VpZ2h0IiA6IDEwODguMCwKICAgICAgICAiZm9vZENhdGVnb3J5IiA6ICJNZWF0cyIKICAgICAgfSBdLAogICAgICAiY2Fsb3JpZXMiIDogMTc0NS40NDQ1NjQ2MDE5MjYyLAogICAgICAidG90YWxXZWlnaHQiIDogMTI1OS43ODIxOTczNjIxMjQ2LAogICAgICAidG90YWxUaW1lIiA6IDAuMCwKICAgICAgInRvdGFsTnV0cmllbnRzIiA6IHsKICAgICAgICAiRU5FUkNfS0NBTCIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkVuZXJneSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTc0NS40NDQ1NjQ2MDE5MjYyLAogICAgICAgICAgInVuaXQiIDogImtjYWwiCiAgICAgICAgfSwKICAgICAgICAiRkFUIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiRmF0IiwKICAgICAgICAgICJxdWFudGl0eSIgOiA2MS45OTAzNTg1MjQ5NjQxMiwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sCiAgICAgICAgIkZBU0FUIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiU2F0dXJhdGVkIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxMi44MTIxMjEwMDQwNzQzNTEsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LAogICAgICAgICJGQVRSTiIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlRyYW5zIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAwLjEyNDE2LAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwKICAgICAgICAiRkFNUyIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIk1vbm91bnNhdHVyYXRlZCIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMjQuMTkzNDA4MzMzNjc4NjcsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LAogICAgICAgICJGQVBVIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiUG9seXVuc2F0dXJhdGVkIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxMi45MTg5ODcxNzkwNjIzOSwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sCiAgICAgICAgIkNIT0NERiIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkNhcmJzIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxOS41OTIwNjIzMjk5NTI3NCwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sCiAgICAgICAgIkZJQlRHIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiRmliZXIiLAogICAgICAgICAgInF1YW50aXR5IiA6IDQuMDYyMjU3NTc4ODk2OTk3LAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwKICAgICAgICAiU1VHQVIiIDogewogICAgICAgICAgImxhYmVsIiA6ICJTdWdhcnMiLAogICAgICAgICAgInF1YW50aXR5IiA6IDcuMTQ0NzI4Nzg5NDQ4NDk4LAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwKICAgICAgICAiUFJPQ05UIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiUHJvdGVpbiIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMjY3Ljc4Nzg3MDg2NTI3Njk0LAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwKICAgICAgICAiQ0hPTEUiIDogewogICAgICAgICAgImxhYmVsIiA6ICJDaG9sZXN0ZXJvbCIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNzk0LjI0LAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIk5BIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiU29kaXVtIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA2NDIwLjk1NjEwMTEwMTUwMiwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJDQSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkNhbGNpdW0iLAogICAgICAgICAgInF1YW50aXR5IiA6IDEyMS4zMjgxMjUxMjk1MDExLAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIk1HIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiTWFnbmVzaXVtIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA0OTEuOTE4ODI2MDQ3OTcyMiwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJLIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiUG90YXNzaXVtIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA0NDU5Ljg5MjU1ODUyNTI0MiwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJGRSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIklyb24iLAogICAgICAgICAgInF1YW50aXR5IiA6IDYuNzAyMDQxODYxNzUwODA1LAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIlpOIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiWmluYyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogOS45NDI1MDUxMTcwNTA0ODUsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiUCIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlBob3NwaG9ydXMiLAogICAgICAgICAgInF1YW50aXR5IiA6IDI3MTAuNzU4NDQ3NjIxMTI3LAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIlZJVEFfUkFFIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBBIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA3Ni4xNjAwMDAwMDAwMDAwMSwKICAgICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgICAgfSwKICAgICAgICAiVEhJQSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlRoaWFtaW4gKEIxKSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMS4xNTQyODgxMjUxMjk1MDEyLAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIlJJQkYiIDogewogICAgICAgICAgImxhYmVsIiA6ICJSaWJvZmxhdmluIChCMikiLAogICAgICAgICAgInF1YW50aXR5IiA6IDIuMjI2NDgwNjI1NjQ3NTA2LAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIk5JQSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIk5pYWNpbiAoQjMpIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxMTUuMjA2NTc3MDU0MDcyMjcsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiVklUQjZBIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBCNiIsCiAgICAgICAgICAicXVhbnRpdHkiIDogOS4yNjU0Mzc2NTIwOTU5NDYsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiRk9MREZFIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiRm9sYXRlIGVxdWl2YWxlbnQgKHRvdGFsKSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTY4LjY4OTUwNzYzMDY5NzQ1LAogICAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgICB9LAogICAgICAgICJGT0xGRCIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkZvbGF0ZSAoZm9vZCkiLAogICAgICAgICAgInF1YW50aXR5IiA6IDE2OC42ODk1MDc2MzA2OTc0NSwKICAgICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgICAgfSwKICAgICAgICAiVklUQjEyIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBCMTIiLAogICAgICAgICAgInF1YW50aXR5IiA6IDIuMjg0OCwKICAgICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgICAgfSwKICAgICAgICAiVklURCIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gRCIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTAuODgsCiAgICAgICAgICAidW5pdCIgOiAiSVUiCiAgICAgICAgfSwKICAgICAgICAiVE9DUEhBIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBFIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxMS45MTY4MDAwMDAwMDAwMDIsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiVklUSzEiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEsiLAogICAgICAgICAgInF1YW50aXR5IiA6IDIuMzY4MDAwMDAwMDAwMDAwMywKICAgICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgICAgfQogICAgICB9LAogICAgICAidG90YWxEYWlseSIgOiB7CiAgICAgICAgIkVORVJDX0tDQUwiIDogewogICAgICAgICAgImxhYmVsIiA6ICJFbmVyZ3kiLAogICAgICAgICAgInF1YW50aXR5IiA6IDg3LjI3MjIyODIzMDA5NjMyLAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiRkFUIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiRmF0IiwKICAgICAgICAgICJxdWFudGl0eSIgOiA5NS4zNjk3ODIzNDYwOTg2NSwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIkZBU0FUIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiU2F0dXJhdGVkIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA2NC4wNjA2MDUwMjAzNzE3NSwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIkNIT0NERiIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkNhcmJzIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA2LjUzMDY4NzQ0MzMxNzU3OSwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIkZJQlRHIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiRmliZXIiLAogICAgICAgICAgInF1YW50aXR5IiA6IDE2LjI0OTAzMDMxNTU4Nzk4NywKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlBST0NOVCIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlByb3RlaW4iLAogICAgICAgICAgInF1YW50aXR5IiA6IDUzNS41NzU3NDE3MzA1NTM5LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiQ0hPTEUiIDogewogICAgICAgICAgImxhYmVsIiA6ICJDaG9sZXN0ZXJvbCIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMjY0Ljc0NjY2NjY2NjY2NjY3LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiTkEiIDogewogICAgICAgICAgImxhYmVsIiA6ICJTb2RpdW0iLAogICAgICAgICAgInF1YW50aXR5IiA6IDI2Ny41Mzk4Mzc1NDU4OTU5LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiQ0EiIDogewogICAgICAgICAgImxhYmVsIiA6ICJDYWxjaXVtIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxMi4xMzI4MTI1MTI5NTAxMSwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIk1HIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiTWFnbmVzaXVtIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxMTcuMTIzNTMwMDExNDIxOTUsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJLIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiUG90YXNzaXVtIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA5NC44OTEzMzEwMzI0NTE5NiwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIkZFIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiSXJvbiIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMzcuMjMzNTY1ODk4NjE1NTgsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJaTiIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlppbmMiLAogICAgICAgICAgInF1YW50aXR5IiA6IDkwLjM4NjQxMDE1NTAwNDQxLAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiUCIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlBob3NwaG9ydXMiLAogICAgICAgICAgInF1YW50aXR5IiA6IDM4Ny4yNTEyMDY4MDMwMTgxNCwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlZJVEFfUkFFIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBBIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA4LjQ2MjIyMjIyMjIyMjIyMywKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlRISUEiIDogewogICAgICAgICAgImxhYmVsIiA6ICJUaGlhbWluIChCMSkiLAogICAgICAgICAgInF1YW50aXR5IiA6IDk2LjE5MDY3NzA5NDEyNTEsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJSSUJGIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiUmlib2ZsYXZpbiAoQjIpIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxNzEuMjY3NzQwNDM0NDIzNSwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIk5JQSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIk5pYWNpbiAoQjMpIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA3MjAuMDQxMTA2NTg3OTUxNywKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlZJVEI2QSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQjYiLAogICAgICAgICAgInF1YW50aXR5IiA6IDcxMi43MjU5NzMyMzgxNDk3LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiRk9MREZFIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiRm9sYXRlIGVxdWl2YWxlbnQgKHRvdGFsKSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNDIuMTcyMzc2OTA3Njc0MzYsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJWSVRCMTIiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEIxMiIsCiAgICAgICAgICAicXVhbnRpdHkiIDogOTUuMjAwMDAwMDAwMDAwMDIsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJWSVREIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBEIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA3Mi41MzMzMzMzMzMzMzMzMywKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlRPQ1BIQSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gRSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNzkuNDQ1MzMzMzMzMzMzMzUsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJWSVRLMSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gSyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMS45NzMzMzMzMzMzMzMzMzM2LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfQogICAgICB9LAogICAgICAiZGlnZXN0IiA6IFsgewogICAgICAgICJsYWJlbCIgOiAiRmF0IiwKICAgICAgICAidGFnIiA6ICJGQVQiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogImZhdENvbnRlbnQiLAogICAgICAgICJ0b3RhbCIgOiA2MS45OTAzNTg1MjQ5NjQxMiwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDk1LjM2OTc4MjM0NjA5ODY1LAogICAgICAgICJ1bml0IiA6ICJnIiwKICAgICAgICAic3ViIiA6IFsgewogICAgICAgICAgImxhYmVsIiA6ICJTYXR1cmF0ZWQiLAogICAgICAgICAgInRhZyIgOiAiRkFTQVQiLAogICAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiAic2F0dXJhdGVkRmF0Q29udGVudCIsCiAgICAgICAgICAidG90YWwiIDogMTIuODEyMTIxMDA0MDc0MzUxLAogICAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICAgImRhaWx5IiA6IDY0LjA2MDYwNTAyMDM3MTc1LAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwgewogICAgICAgICAgImxhYmVsIiA6ICJUcmFucyIsCiAgICAgICAgICAidGFnIiA6ICJGQVRSTiIsCiAgICAgICAgICAic2NoZW1hT3JnVGFnIiA6ICJ0cmFuc0ZhdENvbnRlbnQiLAogICAgICAgICAgInRvdGFsIiA6IDAuMTI0MTYsCiAgICAgICAgICAiaGFzUkRJIiA6IGZhbHNlLAogICAgICAgICAgImRhaWx5IiA6IDAuMCwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sIHsKICAgICAgICAgICJsYWJlbCIgOiAiTW9ub3Vuc2F0dXJhdGVkIiwKICAgICAgICAgICJ0YWciIDogIkZBTVMiLAogICAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICAgInRvdGFsIiA6IDI0LjE5MzQwODMzMzY3ODY3LAogICAgICAgICAgImhhc1JESSIgOiBmYWxzZSwKICAgICAgICAgICJkYWlseSIgOiAwLjAsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LCB7CiAgICAgICAgICAibGFiZWwiIDogIlBvbHl1bnNhdHVyYXRlZCIsCiAgICAgICAgICAidGFnIiA6ICJGQVBVIiwKICAgICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAgICJ0b3RhbCIgOiAxMi45MTg5ODcxNzkwNjIzOSwKICAgICAgICAgICJoYXNSREkiIDogZmFsc2UsCiAgICAgICAgICAiZGFpbHkiIDogMC4wLAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSBdCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIkNhcmJzIiwKICAgICAgICAidGFnIiA6ICJDSE9DREYiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogImNhcmJvaHlkcmF0ZUNvbnRlbnQiLAogICAgICAgICJ0b3RhbCIgOiAxOS41OTIwNjIzMjk5NTI3NCwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDYuNTMwNjg3NDQzMzE3NTc5LAogICAgICAgICJ1bml0IiA6ICJnIiwKICAgICAgICAic3ViIiA6IFsgewogICAgICAgICAgImxhYmVsIiA6ICJDYXJicyAobmV0KSIsCiAgICAgICAgICAidGFnIiA6ICJDSE9DREYubmV0IiwKICAgICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAgICJ0b3RhbCIgOiAxNS41Mjk4MDQ3NTEwNTU3NDIsCiAgICAgICAgICAiaGFzUkRJIiA6IGZhbHNlLAogICAgICAgICAgImRhaWx5IiA6IDAuMCwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sIHsKICAgICAgICAgICJsYWJlbCIgOiAiRmliZXIiLAogICAgICAgICAgInRhZyIgOiAiRklCVEciLAogICAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiAiZmliZXJDb250ZW50IiwKICAgICAgICAgICJ0b3RhbCIgOiA0LjA2MjI1NzU3ODg5Njk5NywKICAgICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAgICJkYWlseSIgOiAxNi4yNDkwMzAzMTU1ODc5ODcsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LCB7CiAgICAgICAgICAibGFiZWwiIDogIlN1Z2FycyIsCiAgICAgICAgICAidGFnIiA6ICJTVUdBUiIsCiAgICAgICAgICAic2NoZW1hT3JnVGFnIiA6ICJzdWdhckNvbnRlbnQiLAogICAgICAgICAgInRvdGFsIiA6IDcuMTQ0NzI4Nzg5NDQ4NDk4LAogICAgICAgICAgImhhc1JESSIgOiBmYWxzZSwKICAgICAgICAgICJkYWlseSIgOiAwLjAsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LCB7CiAgICAgICAgICAibGFiZWwiIDogIlN1Z2FycywgYWRkZWQiLAogICAgICAgICAgInRhZyIgOiAiU1VHQVIuYWRkZWQiLAogICAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICAgInRvdGFsIiA6IDAuMCwKICAgICAgICAgICJoYXNSREkiIDogZmFsc2UsCiAgICAgICAgICAiZGFpbHkiIDogMC4wLAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSBdCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlByb3RlaW4iLAogICAgICAgICJ0YWciIDogIlBST0NOVCIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiAicHJvdGVpbkNvbnRlbnQiLAogICAgICAgICJ0b3RhbCIgOiAyNjcuNzg3ODcwODY1Mjc2OTQsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiA1MzUuNTc1NzQxNzMwNTUzOSwKICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiQ2hvbGVzdGVyb2wiLAogICAgICAgICJ0YWciIDogIkNIT0xFIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6ICJjaG9sZXN0ZXJvbENvbnRlbnQiLAogICAgICAgICJ0b3RhbCIgOiA3OTQuMjQsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAyNjQuNzQ2NjY2NjY2NjY2NjcsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJTb2RpdW0iLAogICAgICAgICJ0YWciIDogIk5BIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6ICJzb2RpdW1Db250ZW50IiwKICAgICAgICAidG90YWwiIDogNjQyMC45NTYxMDExMDE1MDIsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAyNjcuNTM5ODM3NTQ1ODk1OSwKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIkNhbGNpdW0iLAogICAgICAgICJ0YWciIDogIkNBIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDEyMS4zMjgxMjUxMjk1MDExLAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMTIuMTMyODEyNTEyOTUwMTEsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJNYWduZXNpdW0iLAogICAgICAgICJ0YWciIDogIk1HIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDQ5MS45MTg4MjYwNDc5NzIyLAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMTE3LjEyMzUzMDAxMTQyMTk1LAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiUG90YXNzaXVtIiwKICAgICAgICAidGFnIiA6ICJLIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDQ0NTkuODkyNTU4NTI1MjQyLAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogOTQuODkxMzMxMDMyNDUxOTYsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJJcm9uIiwKICAgICAgICAidGFnIiA6ICJGRSIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiA2LjcwMjA0MTg2MTc1MDgwNSwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDM3LjIzMzU2NTg5ODYxNTU4LAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiWmluYyIsCiAgICAgICAgInRhZyIgOiAiWk4iLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogOS45NDI1MDUxMTcwNTA0ODUsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiA5MC4zODY0MTAxNTUwMDQ0MSwKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlBob3NwaG9ydXMiLAogICAgICAgICJ0YWciIDogIlAiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMjcxMC43NTg0NDc2MjExMjcsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAzODcuMjUxMjA2ODAzMDE4MTQsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEEiLAogICAgICAgICJ0YWciIDogIlZJVEFfUkFFIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDc2LjE2MDAwMDAwMDAwMDAxLAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogOC40NjIyMjIyMjIyMjIyMjMsCiAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBDIiwKICAgICAgICAidGFnIiA6ICJWSVRDIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDAuMCwKICAgICAgICAiaGFzUkRJIiA6IGZhbHNlLAogICAgICAgICJkYWlseSIgOiAwLjAsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJUaGlhbWluIChCMSkiLAogICAgICAgICJ0YWciIDogIlRISUEiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMS4xNTQyODgxMjUxMjk1MDEyLAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogOTYuMTkwNjc3MDk0MTI1MSwKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlJpYm9mbGF2aW4gKEIyKSIsCiAgICAgICAgInRhZyIgOiAiUklCRiIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAyLjIyNjQ4MDYyNTY0NzUwNiwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDE3MS4yNjc3NDA0MzQ0MjM1LAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiTmlhY2luIChCMykiLAogICAgICAgICJ0YWciIDogIk5JQSIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAxMTUuMjA2NTc3MDU0MDcyMjcsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiA3MjAuMDQxMTA2NTg3OTUxNywKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQjYiLAogICAgICAgICJ0YWciIDogIlZJVEI2QSIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiA5LjI2NTQzNzY1MjA5NTk0NiwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDcxMi43MjU5NzMyMzgxNDk3LAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiRm9sYXRlIGVxdWl2YWxlbnQgKHRvdGFsKSIsCiAgICAgICAgInRhZyIgOiAiRk9MREZFIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDE2OC42ODk1MDc2MzA2OTc0NSwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDQyLjE3MjM3NjkwNzY3NDM2LAogICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIkZvbGF0ZSAoZm9vZCkiLAogICAgICAgICJ0YWciIDogIkZPTEZEIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDE2OC42ODk1MDc2MzA2OTc0NSwKICAgICAgICAiaGFzUkRJIiA6IGZhbHNlLAogICAgICAgICJkYWlseSIgOiAwLjAsCiAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiRm9saWMgYWNpZCIsCiAgICAgICAgInRhZyIgOiAiRk9MQUMiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMC4wLAogICAgICAgICJoYXNSREkiIDogZmFsc2UsCiAgICAgICAgImRhaWx5IiA6IDAuMCwKICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEIxMiIsCiAgICAgICAgInRhZyIgOiAiVklUQjEyIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDIuMjg0OCwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDk1LjIwMDAwMDAwMDAwMDAyLAogICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gRCIsCiAgICAgICAgInRhZyIgOiAiVklURCIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAxMC44OCwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDcyLjUzMzMzMzMzMzMzMzMzLAogICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gRSIsCiAgICAgICAgInRhZyIgOiAiVE9DUEhBIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDExLjkxNjgwMDAwMDAwMDAwMiwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDc5LjQ0NTMzMzMzMzMzMzM1LAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBLIiwKICAgICAgICAidGFnIiA6ICJWSVRLMSIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAyLjM2ODAwMDAwMDAwMDAwMDMsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAxLjk3MzMzMzMzMzMzMzMzMzYsCiAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgfSBdCiAgICB9LAogICAgImJvb2ttYXJrZWQiIDogZmFsc2UsCiAgICAiYm91Z2h0IiA6IGZhbHNlCiAgfSwgewogICAgInJlY2lwZSIgOiB7CiAgICAgICJ1cmkiIDogImh0dHA6Ly93d3cuZWRhbWFtLmNvbS9vbnRvbG9naWVzL2VkYW1hbS5vd2wjcmVjaXBlX2UyOWZlZWIyNTBjM2NjMGY2ZWI0ODdiN2NhZTVkOGIxIiwKICAgICAgImxhYmVsIiA6ICJDaGlja2VuIFBpY2NhdGEiLAogICAgICAiaW1hZ2UiIDogImh0dHBzOi8vd3d3LmVkYW1hbS5jb20vd2ViLWltZy85M2UvOTNlNWUyMmM4NzkyYmZiYzlmYTM2NTQyMDczNDdjOWMuanBnIiwKICAgICAgInNvdXJjZSIgOiAiTGVpdGUncyBDdWxpbmFyaWEiLAogICAgICAidXJsIiA6ICJodHRwOi8vbGVpdGVzY3VsaW5hcmlhLmNvbS81MzU0L3JlY2lwZXMtY2hpY2tlbi1waWNjYXRhLmh0bWwiLAogICAgICAic2hhcmVBcyIgOiAiaHR0cDovL3d3dy5lZGFtYW0uY29tL3JlY2lwZS9jaGlja2VuLXBpY2NhdGEtZTI5ZmVlYjI1MGMzY2MwZjZlYjQ4N2I3Y2FlNWQ4YjEvY2hpY2tlbiIsCiAgICAgICJ5aWVsZCIgOiA0LjAsCiAgICAgICJkaWV0TGFiZWxzIiA6IFsgIkxvdy1DYXJiIiBdLAogICAgICAiaGVhbHRoTGFiZWxzIiA6IFsgIlN1Z2FyLUNvbnNjaW91cyIsICJQZWFudXQtRnJlZSIsICJUcmVlLU51dC1GcmVlIiwgIkFsY29ob2wtRnJlZSIgXSwKICAgICAgImNhdXRpb25zIiA6IFsgXSwKICAgICAgImluZ3JlZGllbnRMaW5lcyIgOiBbICI0IGJvbmVsZXNzLCBza2lubGVzcyBjaGlja2VuIGJyZWFzdCBoYWx2ZXMsIHBhdHRlZCBkcnkgKDIgMS8yIHRvIDMgcG91bmRzIHRvdGFsKSIsICJLb3NoZXIgc2FsdCBhbmQgZnJlc2hseSBncm91bmQgYmxhY2sgcGVwcGVyIiwgIjEvMiBjdXAgYWxsLXB1cnBvc2UgZmxvdXIiLCAiMiB0YWJsZXNwb29ucyBvbGl2ZSBvaWwiLCAiNCB0YWJsZXNwb29ucyB1bnNhbHRlZCBidXR0ZXIiLCAiMiB0YWJsZXNwb29ucyBmcmVzaCBsZW1vbiBqdWljZSIsICIxIHRhYmxlc3Bvb24gY2FwZXJzLCBkcmFpbmVkIiwgIjIgdGFibGVzcG9vbnMgY2hvcHBlZCBmcmVzaCBmbGF0LWxlYWYgcGFyc2xleSIgXSwKICAgICAgImluZ3JlZGllbnRzIiA6IFsgewogICAgICAgICJ0ZXh0IiA6ICI0IGJvbmVsZXNzLCBza2lubGVzcyBjaGlja2VuIGJyZWFzdCBoYWx2ZXMsIHBhdHRlZCBkcnkgKDIgMS8yIHRvIDMgcG91bmRzIHRvdGFsKSIsCiAgICAgICAgIndlaWdodCIgOiAzNDguMCwKICAgICAgICAiZm9vZENhdGVnb3J5IiA6ICJNZWF0cyIKICAgICAgfSwgewogICAgICAgICJ0ZXh0IiA6ICJLb3NoZXIgc2FsdCBhbmQgZnJlc2hseSBncm91bmQgYmxhY2sgcGVwcGVyIiwKICAgICAgICAid2VpZ2h0IiA6IDMuMjMxLAogICAgICAgICJmb29kQ2F0ZWdvcnkiIDogIlBhbnRyeSIKICAgICAgfSwgewogICAgICAgICJ0ZXh0IiA6ICJLb3NoZXIgc2FsdCBhbmQgZnJlc2hseSBncm91bmQgYmxhY2sgcGVwcGVyIiwKICAgICAgICAid2VpZ2h0IiA6IDEuNjE1NSwKICAgICAgICAiZm9vZENhdGVnb3J5IiA6ICJQYW50cnkiCiAgICAgIH0sIHsKICAgICAgICAidGV4dCIgOiAiMS8yIGN1cCBhbGwtcHVycG9zZSBmbG91ciIsCiAgICAgICAgIndlaWdodCIgOiA2Mi41LAogICAgICAgICJmb29kQ2F0ZWdvcnkiIDogIlBhbnRyeSIKICAgICAgfSwgewogICAgICAgICJ0ZXh0IiA6ICIyIHRhYmxlc3Bvb25zIG9saXZlIG9pbCIsCiAgICAgICAgIndlaWdodCIgOiAyNy4wLAogICAgICAgICJmb29kQ2F0ZWdvcnkiIDogIlBhbnRyeSIKICAgICAgfSwgewogICAgICAgICJ0ZXh0IiA6ICI0IHRhYmxlc3Bvb25zIHVuc2FsdGVkIGJ1dHRlciIsCiAgICAgICAgIndlaWdodCIgOiA1Ni44LAogICAgICAgICJmb29kQ2F0ZWdvcnkiIDogIkRhaXJ5IgogICAgICB9LCB7CiAgICAgICAgInRleHQiIDogIjIgdGFibGVzcG9vbnMgZnJlc2ggbGVtb24ganVpY2UiLAogICAgICAgICJ3ZWlnaHQiIDogMjguMCwKICAgICAgICAiZm9vZENhdGVnb3J5IiA6ICJGcmVzaCBwcm9kdWNlIgogICAgICB9LCB7CiAgICAgICAgInRleHQiIDogIjEgdGFibGVzcG9vbiBjYXBlcnMsIGRyYWluZWQiLAogICAgICAgICJ3ZWlnaHQiIDogOC42LAogICAgICAgICJmb29kQ2F0ZWdvcnkiIDogIlBhbnRyeSIKICAgICAgfSwgewogICAgICAgICJ0ZXh0IiA6ICIyIHRhYmxlc3Bvb25zIGNob3BwZWQgZnJlc2ggZmxhdC1sZWFmIHBhcnNsZXkiLAogICAgICAgICJ3ZWlnaHQiIDogNy42LAogICAgICAgICJmb29kQ2F0ZWdvcnkiIDogIkZyZXNoIHByb2R1Y2UiCiAgICAgIH0gXSwKICAgICAgImNhbG9yaWVzIiA6IDEzMDUuOTY0OTA1MDAwMDAwMywKICAgICAgInRvdGFsV2VpZ2h0IiA6IDU0Mi4zOTc4NzQ0NTkzMTE3LAogICAgICAidG90YWxUaW1lIiA6IDAuMCwKICAgICAgInRvdGFsTnV0cmllbnRzIiA6IHsKICAgICAgICAiRU5FUkNfS0NBTCIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkVuZXJneSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTMwNS45NjQ5MDUwMDAwMDAzLAogICAgICAgICAgInVuaXQiIDogImtjYWwiCiAgICAgICAgfSwKICAgICAgICAiRkFUIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiRmF0IiwKICAgICAgICAgICJxdWFudGl0eSIgOiA4My4wNTQ0NDUzLAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwKICAgICAgICAiRkFTQVQiIDogewogICAgICAgICAgImxhYmVsIiA6ICJTYXR1cmF0ZWQiLAogICAgICAgICAgInF1YW50aXR5IiA6IDM1LjAyNTA1Njc2MDAwMDAwNSwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sCiAgICAgICAgIkZBVFJOIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVHJhbnMiLAogICAgICAgICAgInF1YW50aXR5IiA6IDEuODg2MjYzOTk5OTk5OTk5NywKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sCiAgICAgICAgIkZBTVMiIDogewogICAgICAgICAgImxhYmVsIiA6ICJNb25vdW5zYXR1cmF0ZWQiLAogICAgICAgICAgInF1YW50aXR5IiA6IDM0LjEzMjk0OTU0NDk5OTk5NSwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sCiAgICAgICAgIkZBUFUiIDogewogICAgICAgICAgImxhYmVsIiA6ICJQb2x5dW5zYXR1cmF0ZWQiLAogICAgICAgICAgInF1YW50aXR5IiA6IDYuMzYwODQ5NjksCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LAogICAgICAgICJDSE9DREYiIDogewogICAgICAgICAgImxhYmVsIiA6ICJDYXJicyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNTEuNTk0NTYyMjUwMDAwMDEsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LAogICAgICAgICJGSUJURyIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkZpYmVyIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAyLjcwNjIyMTUsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LAogICAgICAgICJTVUdBUiIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlN1Z2FycyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMS4wMTg2MjkyLAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwKICAgICAgICAiUFJPQ05UIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiUHJvdGVpbiIsCiAgICAgICAgICAicXVhbnRpdHkiIDogODUuOTMzNTgwNDUsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LAogICAgICAgICJDSE9MRSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkNob2xlc3Rlcm9sIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAzNzYuMTU5OTk5OTk5OTk5OTcsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiTkEiIDogewogICAgICAgICAgImxhYmVsIiA6ICJTb2RpdW0iLAogICAgICAgICAgInF1YW50aXR5IiA6IDEyNTYuMDI3NzkyOTQwMDAwNiwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJDQSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkNhbGNpdW0iLAogICAgICAgICAgInF1YW50aXR5IiA6IDYzLjk4OTQzNDg3MDIzNDc5LAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIk1HIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiTWFnbmVzaXVtIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxMjMuNDI5MzI4NzQ0NTkzMSwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJLIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiUG90YXNzaXVtIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxMzM5LjEzMzU4NDk1Njc0NSwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJGRSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIklyb24iLAogICAgICAgICAgInF1YW50aXR5IiA6IDUuMTUxNzc2ODg1NzE1NzI4LAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIlpOIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiWmluYyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMi45OTkzNjY4MjQ0NTkzMTEyLAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIlAiIDogewogICAgICAgICAgImxhYmVsIiA6ICJQaG9zcGhvcnVzIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA4MzIuNDMyNDksCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiVklUQV9SQUUiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEEiLAogICAgICAgICAgInF1YW50aXR5IiA6IDQ0NS45MDYxODQ5OTk5OTk5LAogICAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgICB9LAogICAgICAgICJWSVRDIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBDIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAyMS4zMTM4LAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIlRISUEiIDogewogICAgICAgICAgImxhYmVsIiA6ICJUaGlhbWluIChCMSkiLAogICAgICAgICAgInF1YW50aXR5IiA6IDAuODM3MTMzNzQsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiUklCRiIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlJpYm9mbGF2aW4gKEIyKSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMC45NzA1MzE4OTk5OTk5OTk5LAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIk5JQSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIk5pYWNpbiAoQjMpIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAzNy4zMjE2NjExNjUsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiVklUQjZBIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBCNiIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMi44Nzc4ODMxMDUsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiRk9MREZFIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiRm9sYXRlIGVxdWl2YWxlbnQgKHRvdGFsKSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMjM0LjMwMzYzNSwKICAgICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgICAgfSwKICAgICAgICAiRk9MRkQiIDogewogICAgICAgICAgImxhYmVsIiA6ICJGb2xhdGUgKGZvb2QpIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA3MC41NTM2MzUsCiAgICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICAgIH0sCiAgICAgICAgIkZPTEFDIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiRm9saWMgYWNpZCIsCiAgICAgICAgICAicXVhbnRpdHkiIDogOTYuMjUsCiAgICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICAgIH0sCiAgICAgICAgIlZJVEIxMiIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQjEyIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAwLjgyNzM2LAogICAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgICB9LAogICAgICAgICJWSVREIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBEIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAwLjg1MTk5OTk5OTk5OTk5OTksCiAgICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICAgIH0sCiAgICAgICAgIlRPQ1BIQSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gRSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNy40NzYyOTEyLAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIlZJVEsxIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBLIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxNTAuNTEzNjczNSwKICAgICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgICAgfQogICAgICB9LAogICAgICAidG90YWxEYWlseSIgOiB7CiAgICAgICAgIkVORVJDX0tDQUwiIDogewogICAgICAgICAgImxhYmVsIiA6ICJFbmVyZ3kiLAogICAgICAgICAgInF1YW50aXR5IiA6IDY1LjI5ODI0NTI1MDAwMDAxLAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiRkFUIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiRmF0IiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxMjcuNzc2MDY5NjkyMzA3NywKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIkZBU0FUIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiU2F0dXJhdGVkIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxNzUuMTI1MjgzODAwMDAwMDMsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJDSE9DREYiIDogewogICAgICAgICAgImxhYmVsIiA6ICJDYXJicyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTcuMTk4MTg3NDE2NjY2NjcsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJGSUJURyIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkZpYmVyIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxMC44MjQ4ODYsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJQUk9DTlQiIDogewogICAgICAgICAgImxhYmVsIiA6ICJQcm90ZWluIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxNzEuODY3MTYwOSwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIkNIT0xFIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiQ2hvbGVzdGVyb2wiLAogICAgICAgICAgInF1YW50aXR5IiA6IDEyNS4zODY2NjY2NjY2NjY2NywKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIk5BIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiU29kaXVtIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA1Mi4zMzQ0OTEzNzI1MDAwMjUsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJDQSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkNhbGNpdW0iLAogICAgICAgICAgInF1YW50aXR5IiA6IDYuMzk4OTQzNDg3MDIzNDc5LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiTUciIDogewogICAgICAgICAgImxhYmVsIiA6ICJNYWduZXNpdW0iLAogICAgICAgICAgInF1YW50aXR5IiA6IDI5LjM4NzkzNTQxNTM3OTMxNCwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIksiIDogewogICAgICAgICAgImxhYmVsIiA6ICJQb3Rhc3NpdW0iLAogICAgICAgICAgInF1YW50aXR5IiA6IDI4LjQ5MjIwMzkzNTI0OTg5MywKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIkZFIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiSXJvbiIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMjguNjIwOTgyNjk4NDIwNzE1LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiWk4iIDogewogICAgICAgICAgImxhYmVsIiA6ICJaaW5jIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAyNy4yNjY5NzExMzE0NDgyODMsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJQIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiUGhvc3Bob3J1cyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTE4LjkxODkyNzE0Mjg1NzE0LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiVklUQV9SQUUiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEEiLAogICAgICAgICAgInF1YW50aXR5IiA6IDQ5LjU0NTEzMTY2NjY2NjY1NiwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlZJVEMiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEMiLAogICAgICAgICAgInF1YW50aXR5IiA6IDIzLjY4MjAwMDAwMDAwMDAwMiwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlRISUEiIDogewogICAgICAgICAgImxhYmVsIiA6ICJUaGlhbWluIChCMSkiLAogICAgICAgICAgInF1YW50aXR5IiA6IDY5Ljc2MTE0NSwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlJJQkYiIDogewogICAgICAgICAgImxhYmVsIiA6ICJSaWJvZmxhdmluIChCMikiLAogICAgICAgICAgInF1YW50aXR5IiA6IDc0LjY1NjI5OTk5OTk5OTk5LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiTklBIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiTmlhY2luIChCMykiLAogICAgICAgICAgInF1YW50aXR5IiA6IDIzMy4yNjAzODIyODEyNSwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlZJVEI2QSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQjYiLAogICAgICAgICAgInF1YW50aXR5IiA6IDIyMS4zNzU2MjM0NjE1Mzg0OCwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIkZPTERGRSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkZvbGF0ZSBlcXVpdmFsZW50ICh0b3RhbCkiLAogICAgICAgICAgInF1YW50aXR5IiA6IDU4LjU3NTkwODc1MDAwMDAxLAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiVklUQjEyIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBCMTIiLAogICAgICAgICAgInF1YW50aXR5IiA6IDM0LjQ3MzMzMzMzMzMzMzMzNiwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlZJVEQiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEQiLAogICAgICAgICAgInF1YW50aXR5IiA6IDUuNjc5OTk5OTk5OTk5OTk5LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiVE9DUEhBIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBFIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA0OS44NDE5NDEzMzMzMzMzNCwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlZJVEsxIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBLIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxMjUuNDI4MDYxMjUsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9CiAgICAgIH0sCiAgICAgICJkaWdlc3QiIDogWyB7CiAgICAgICAgImxhYmVsIiA6ICJGYXQiLAogICAgICAgICJ0YWciIDogIkZBVCIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiAiZmF0Q29udGVudCIsCiAgICAgICAgInRvdGFsIiA6IDgzLjA1NDQ0NTMsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAxMjcuNzc2MDY5NjkyMzA3NywKICAgICAgICAidW5pdCIgOiAiZyIsCiAgICAgICAgInN1YiIgOiBbIHsKICAgICAgICAgICJsYWJlbCIgOiAiU2F0dXJhdGVkIiwKICAgICAgICAgICJ0YWciIDogIkZBU0FUIiwKICAgICAgICAgICJzY2hlbWFPcmdUYWciIDogInNhdHVyYXRlZEZhdENvbnRlbnQiLAogICAgICAgICAgInRvdGFsIiA6IDM1LjAyNTA1Njc2MDAwMDAwNSwKICAgICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAgICJkYWlseSIgOiAxNzUuMTI1MjgzODAwMDAwMDMsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LCB7CiAgICAgICAgICAibGFiZWwiIDogIlRyYW5zIiwKICAgICAgICAgICJ0YWciIDogIkZBVFJOIiwKICAgICAgICAgICJzY2hlbWFPcmdUYWciIDogInRyYW5zRmF0Q29udGVudCIsCiAgICAgICAgICAidG90YWwiIDogMS44ODYyNjM5OTk5OTk5OTk3LAogICAgICAgICAgImhhc1JESSIgOiBmYWxzZSwKICAgICAgICAgICJkYWlseSIgOiAwLjAsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LCB7CiAgICAgICAgICAibGFiZWwiIDogIk1vbm91bnNhdHVyYXRlZCIsCiAgICAgICAgICAidGFnIiA6ICJGQU1TIiwKICAgICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAgICJ0b3RhbCIgOiAzNC4xMzI5NDk1NDQ5OTk5OTUsCiAgICAgICAgICAiaGFzUkRJIiA6IGZhbHNlLAogICAgICAgICAgImRhaWx5IiA6IDAuMCwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sIHsKICAgICAgICAgICJsYWJlbCIgOiAiUG9seXVuc2F0dXJhdGVkIiwKICAgICAgICAgICJ0YWciIDogIkZBUFUiLAogICAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICAgInRvdGFsIiA6IDYuMzYwODQ5NjksCiAgICAgICAgICAiaGFzUkRJIiA6IGZhbHNlLAogICAgICAgICAgImRhaWx5IiA6IDAuMCwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0gXQogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJDYXJicyIsCiAgICAgICAgInRhZyIgOiAiQ0hPQ0RGIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6ICJjYXJib2h5ZHJhdGVDb250ZW50IiwKICAgICAgICAidG90YWwiIDogNTEuNTk0NTYyMjUwMDAwMDEsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAxNy4xOTgxODc0MTY2NjY2NywKICAgICAgICAidW5pdCIgOiAiZyIsCiAgICAgICAgInN1YiIgOiBbIHsKICAgICAgICAgICJsYWJlbCIgOiAiQ2FyYnMgKG5ldCkiLAogICAgICAgICAgInRhZyIgOiAiQ0hPQ0RGLm5ldCIsCiAgICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgICAidG90YWwiIDogNDguODg4MzQwNzUwMDAwMDEsCiAgICAgICAgICAiaGFzUkRJIiA6IGZhbHNlLAogICAgICAgICAgImRhaWx5IiA6IDAuMCwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sIHsKICAgICAgICAgICJsYWJlbCIgOiAiRmliZXIiLAogICAgICAgICAgInRhZyIgOiAiRklCVEciLAogICAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiAiZmliZXJDb250ZW50IiwKICAgICAgICAgICJ0b3RhbCIgOiAyLjcwNjIyMTUsCiAgICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgICAiZGFpbHkiIDogMTAuODI0ODg2LAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwgewogICAgICAgICAgImxhYmVsIiA6ICJTdWdhcnMiLAogICAgICAgICAgInRhZyIgOiAiU1VHQVIiLAogICAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiAic3VnYXJDb250ZW50IiwKICAgICAgICAgICJ0b3RhbCIgOiAxLjAxODYyOTIsCiAgICAgICAgICAiaGFzUkRJIiA6IGZhbHNlLAogICAgICAgICAgImRhaWx5IiA6IDAuMCwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sIHsKICAgICAgICAgICJsYWJlbCIgOiAiU3VnYXJzLCBhZGRlZCIsCiAgICAgICAgICAidGFnIiA6ICJTVUdBUi5hZGRlZCIsCiAgICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgICAidG90YWwiIDogMC4wLAogICAgICAgICAgImhhc1JESSIgOiBmYWxzZSwKICAgICAgICAgICJkYWlseSIgOiAwLjAsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9IF0KICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiUHJvdGVpbiIsCiAgICAgICAgInRhZyIgOiAiUFJPQ05UIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6ICJwcm90ZWluQ29udGVudCIsCiAgICAgICAgInRvdGFsIiA6IDg1LjkzMzU4MDQ1LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMTcxLjg2NzE2MDksCiAgICAgICAgInVuaXQiIDogImciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIkNob2xlc3Rlcm9sIiwKICAgICAgICAidGFnIiA6ICJDSE9MRSIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiAiY2hvbGVzdGVyb2xDb250ZW50IiwKICAgICAgICAidG90YWwiIDogMzc2LjE1OTk5OTk5OTk5OTk3LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMTI1LjM4NjY2NjY2NjY2NjY3LAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiU29kaXVtIiwKICAgICAgICAidGFnIiA6ICJOQSIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiAic29kaXVtQ29udGVudCIsCiAgICAgICAgInRvdGFsIiA6IDEyNTYuMDI3NzkyOTQwMDAwNiwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDUyLjMzNDQ5MTM3MjUwMDAyNSwKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIkNhbGNpdW0iLAogICAgICAgICJ0YWciIDogIkNBIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDYzLjk4OTQzNDg3MDIzNDc5LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogNi4zOTg5NDM0ODcwMjM0NzksCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJNYWduZXNpdW0iLAogICAgICAgICJ0YWciIDogIk1HIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDEyMy40MjkzMjg3NDQ1OTMxLAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMjkuMzg3OTM1NDE1Mzc5MzE0LAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiUG90YXNzaXVtIiwKICAgICAgICAidGFnIiA6ICJLIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDEzMzkuMTMzNTg0OTU2NzQ1LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMjguNDkyMjAzOTM1MjQ5ODkzLAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiSXJvbiIsCiAgICAgICAgInRhZyIgOiAiRkUiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogNS4xNTE3NzY4ODU3MTU3MjgsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAyOC42MjA5ODI2OTg0MjA3MTUsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJaaW5jIiwKICAgICAgICAidGFnIiA6ICJaTiIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAyLjk5OTM2NjgyNDQ1OTMxMTIsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAyNy4yNjY5NzExMzE0NDgyODMsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJQaG9zcGhvcnVzIiwKICAgICAgICAidGFnIiA6ICJQIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDgzMi40MzI0OSwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDExOC45MTg5MjcxNDI4NTcxNCwKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQSIsCiAgICAgICAgInRhZyIgOiAiVklUQV9SQUUiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogNDQ1LjkwNjE4NDk5OTk5OTksCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiA0OS41NDUxMzE2NjY2NjY2NTYsCiAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBDIiwKICAgICAgICAidGFnIiA6ICJWSVRDIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDIxLjMxMzgsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAyMy42ODIwMDAwMDAwMDAwMDIsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJUaGlhbWluIChCMSkiLAogICAgICAgICJ0YWciIDogIlRISUEiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMC44MzcxMzM3NCwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDY5Ljc2MTE0NSwKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlJpYm9mbGF2aW4gKEIyKSIsCiAgICAgICAgInRhZyIgOiAiUklCRiIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAwLjk3MDUzMTg5OTk5OTk5OTksCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiA3NC42NTYyOTk5OTk5OTk5OSwKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIk5pYWNpbiAoQjMpIiwKICAgICAgICAidGFnIiA6ICJOSUEiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMzcuMzIxNjYxMTY1LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMjMzLjI2MDM4MjI4MTI1LAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBCNiIsCiAgICAgICAgInRhZyIgOiAiVklUQjZBIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDIuODc3ODgzMTA1LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMjIxLjM3NTYyMzQ2MTUzODQ4LAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiRm9sYXRlIGVxdWl2YWxlbnQgKHRvdGFsKSIsCiAgICAgICAgInRhZyIgOiAiRk9MREZFIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDIzNC4zMDM2MzUsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiA1OC41NzU5MDg3NTAwMDAwMSwKICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJGb2xhdGUgKGZvb2QpIiwKICAgICAgICAidGFnIiA6ICJGT0xGRCIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiA3MC41NTM2MzUsCiAgICAgICAgImhhc1JESSIgOiBmYWxzZSwKICAgICAgICAiZGFpbHkiIDogMC4wLAogICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIkZvbGljIGFjaWQiLAogICAgICAgICJ0YWciIDogIkZPTEFDIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDk2LjI1LAogICAgICAgICJoYXNSREkiIDogZmFsc2UsCiAgICAgICAgImRhaWx5IiA6IDAuMCwKICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEIxMiIsCiAgICAgICAgInRhZyIgOiAiVklUQjEyIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDAuODI3MzYsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAzNC40NzMzMzMzMzMzMzMzMzYsCiAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBEIiwKICAgICAgICAidGFnIiA6ICJWSVREIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDAuODUxOTk5OTk5OTk5OTk5OSwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDUuNjc5OTk5OTk5OTk5OTk5LAogICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gRSIsCiAgICAgICAgInRhZyIgOiAiVE9DUEhBIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDcuNDc2MjkxMiwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDQ5Ljg0MTk0MTMzMzMzMzM0LAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBLIiwKICAgICAgICAidGFnIiA6ICJWSVRLMSIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAxNTAuNTEzNjczNSwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDEyNS40MjgwNjEyNSwKICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICB9IF0KICAgIH0sCiAgICAiYm9va21hcmtlZCIgOiBmYWxzZSwKICAgICJib3VnaHQiIDogZmFsc2UKICB9LCB7CiAgICAicmVjaXBlIiA6IHsKICAgICAgInVyaSIgOiAiaHR0cDovL3d3dy5lZGFtYW0uY29tL29udG9sb2dpZXMvZWRhbWFtLm93bCNyZWNpcGVfYmUzYmEwODdlMjEyZjEzNjcyYjU1M2VjZmE4NzYzMzMiLAogICAgICAibGFiZWwiIDogIkJha2VkIENoaWNrZW4iLAogICAgICAiaW1hZ2UiIDogImh0dHBzOi8vd3d3LmVkYW1hbS5jb20vd2ViLWltZy81YmEvNWJhMDM0ZTNiOTRhMWMzYjEwNTM2MDM0YTRhNDM3MTMuanBnIiwKICAgICAgInNvdXJjZSIgOiAiTWFydGhhIFN0ZXdhcnQiLAogICAgICAidXJsIiA6ICJodHRwOi8vd3d3Lm1hcnRoYXN0ZXdhcnQuY29tLzMxODk4MS9iYWtlZC1jaGlja2VuIiwKICAgICAgInNoYXJlQXMiIDogImh0dHA6Ly93d3cuZWRhbWFtLmNvbS9yZWNpcGUvYmFrZWQtY2hpY2tlbi1iZTNiYTA4N2UyMTJmMTM2NzJiNTUzZWNmYTg3NjMzMy9jaGlja2VuIiwKICAgICAgInlpZWxkIiA6IDQuMCwKICAgICAgImRpZXRMYWJlbHMiIDogWyAiTG93LUNhcmIiIF0sCiAgICAgICJoZWFsdGhMYWJlbHMiIDogWyAiU3VnYXItQ29uc2Npb3VzIiwgIlBlYW51dC1GcmVlIiwgIlRyZWUtTnV0LUZyZWUiLCAiQWxjb2hvbC1GcmVlIiBdLAogICAgICAiY2F1dGlvbnMiIDogWyBdLAogICAgICAiaW5ncmVkaWVudExpbmVzIiA6IFsgIjYgYm9uZS1pbiBjaGlja2VuIGJyZWFzdCBoYWx2ZXMsIG9yIDYgY2hpY2tlbiB0aGlnaHMgYW5kIHdpbmdzLCBza2luLW9uIiwgIjEvMiB0ZWFzcG9vbiBjb2Fyc2Ugc2FsdCIsICIxLzIgdGVhc3Bvb24gbXJzLiBkYXNoIHNlYXNvbmluZyIsICIxLzQgdGVhc3Bvb24gZnJlc2hseSBncm91bmQgYmxhY2sgcGVwcGVyIiBdLAogICAgICAiaW5ncmVkaWVudHMiIDogWyB7CiAgICAgICAgInRleHQiIDogIjYgYm9uZS1pbiBjaGlja2VuIGJyZWFzdCBoYWx2ZXMsIG9yIDYgY2hpY2tlbiB0aGlnaHMgYW5kIHdpbmdzLCBza2luLW9uIiwKICAgICAgICAid2VpZ2h0IiA6IDUyMi4wLAogICAgICAgICJmb29kQ2F0ZWdvcnkiIDogIk1lYXRzIgogICAgICB9LCB7CiAgICAgICAgInRleHQiIDogIjEvMiB0ZWFzcG9vbiBjb2Fyc2Ugc2FsdCIsCiAgICAgICAgIndlaWdodCIgOiAyLjQyNzA4MzMzMzQ1NjQzNzcsCiAgICAgICAgImZvb2RDYXRlZ29yeSIgOiAiUGFudHJ5IgogICAgICB9LCB7CiAgICAgICAgInRleHQiIDogIjEvMiB0ZWFzcG9vbiBtcnMuIGRhc2ggc2Vhc29uaW5nIiwKICAgICAgICAid2VpZ2h0IiA6IDAuNzUsCiAgICAgICAgImZvb2RDYXRlZ29yeSIgOiAiUGFudHJ5IgogICAgICB9LCB7CiAgICAgICAgInRleHQiIDogIjEvNCB0ZWFzcG9vbiBmcmVzaGx5IGdyb3VuZCBibGFjayBwZXBwZXIiLAogICAgICAgICJ3ZWlnaHQiIDogMC43MjUsCiAgICAgICAgImZvb2RDYXRlZ29yeSIgOiAiUGFudHJ5IgogICAgICB9IF0sCiAgICAgICJjYWxvcmllcyIgOiA5MDEuOTYyMjQ5OTk5OTk5OSwKICAgICAgInRvdGFsV2VpZ2h0IiA6IDUyNS43NjY0NTc2MTY0OTIxLAogICAgICAidG90YWxUaW1lIiA6IDE0MS4wLAogICAgICAidG90YWxOdXRyaWVudHMiIDogewogICAgICAgICJFTkVSQ19LQ0FMIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiRW5lcmd5IiwKICAgICAgICAgICJxdWFudGl0eSIgOiA5MDEuOTYyMjQ5OTk5OTk5OSwKICAgICAgICAgICJ1bml0IiA6ICJrY2FsIgogICAgICAgIH0sCiAgICAgICAgIkZBVCIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkZhdCIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNDguMzY1MTA5OTk5OTk5OTk0LAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwKICAgICAgICAiRkFTQVQiIDogewogICAgICAgICAgImxhYmVsIiA6ICJTYXR1cmF0ZWQiLAogICAgICAgICAgInF1YW50aXR5IiA6IDEzLjkxOTk2NywKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sCiAgICAgICAgIkZBVFJOIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVHJhbnMiLAogICAgICAgICAgInF1YW50aXR5IiA6IDAuNTQ4MDk5OTk5OTk5OTk5OSwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sCiAgICAgICAgIkZBTVMiIDogewogICAgICAgICAgImxhYmVsIiA6ICJNb25vdW5zYXR1cmF0ZWQiLAogICAgICAgICAgInF1YW50aXR5IiA6IDE5Ljk1NDgwMjc1LAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwKICAgICAgICAiRkFQVSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlBvbHl1bnNhdHVyYXRlZCIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTAuMjUyOTU1NDk5OTk5OTk5LAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwKICAgICAgICAiQ0hPQ0RGIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiQ2FyYnMiLAogICAgICAgICAgInF1YW50aXR5IiA6IDAuOTU1NTYyNSwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sCiAgICAgICAgIkZJQlRHIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiRmliZXIiLAogICAgICAgICAgInF1YW50aXR5IiA6IDAuMjY4MTc1LAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwKICAgICAgICAiU1VHQVIiIDogewogICAgICAgICAgImxhYmVsIiA6ICJTdWdhcnMiLAogICAgICAgICAgInF1YW50aXR5IiA6IDAuMDE4MTQsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LAogICAgICAgICJQUk9DTlQiIDogewogICAgICAgICAgImxhYmVsIiA6ICJQcm90ZWluIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxMDguOTg0MjUyNSwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sCiAgICAgICAgIkNIT0xFIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiQ2hvbGVzdGVyb2wiLAogICAgICAgICAgInF1YW50aXR5IiA6IDMzNC4wOCwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJOQSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlNvZGl1bSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTIxNy4zMzA2NDMsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiQ0EiIDogewogICAgICAgICAgImxhYmVsIiA6ICJDYWxjaXVtIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA2OC42NTE2OTk4Mjc5NTgxLAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIk1HIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiTWFnbmVzaXVtIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxMzMuNDQyNjY0NTc2MTY0OSwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJLIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiUG90YXNzaXVtIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxMTYzLjM0ODU2NjYwOTMxOTMsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiRkUiIDogewogICAgICAgICAgImxhYmVsIiA6ICJJcm9uIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA0LjIwNTUwOTMxMDEzNDQyNCwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJaTiIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlppbmMiLAogICAgICAgICAgInF1YW50aXR5IiA6IDQuMjEwNDY4OTU3NjE2NDkyLAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIlAiIDogewogICAgICAgICAgImxhYmVsIiA6ICJQaG9zcGhvcnVzIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA5MTAuNzA4LAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIlZJVEFfUkFFIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBBIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxMjYuNDY1NzUsCiAgICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICAgIH0sCiAgICAgICAgIlZJVEMiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEMiLAogICAgICAgICAgInF1YW50aXR5IiA6IDAuMDksCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiVEhJQSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlRoaWFtaW4gKEIxKSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMC4zMzE2MjI5OTk5OTk5OTk5NSwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJSSUJGIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiUmlib2ZsYXZpbiAoQjIpIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAwLjQ0NjQzNzUsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiTklBIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiTmlhY2luIChCMykiLAogICAgICAgICAgInF1YW50aXR5IiA6IDUxLjc1MDMyMTc1LAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIlZJVEI2QSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQjYiLAogICAgICAgICAgInF1YW50aXR5IiA6IDIuNzc4NjA5NzQ5OTk5OTk5OCwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJGT0xERkUiIDogewogICAgICAgICAgImxhYmVsIiA6ICJGb2xhdGUgZXF1aXZhbGVudCAodG90YWwpIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAyMi4wMzgyNDk5OTk5OTk5OTgsCiAgICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICAgIH0sCiAgICAgICAgIkZPTEZEIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiRm9sYXRlIChmb29kKSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMjIuMDM4MjQ5OTk5OTk5OTk4LAogICAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgICB9LAogICAgICAgICJWSVRCMTIiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEIxMiIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMS43NzQ4LAogICAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgICB9LAogICAgICAgICJWSVREIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBEIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAyLjA4OCwKICAgICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgICAgfSwKICAgICAgICAiVE9DUEhBIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBFIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxLjQyNjg0LAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIlZJVEsxIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBLIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA3LjIyNzMyNDk5OTk5OTk5OTYsCiAgICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICAgIH0KICAgICAgfSwKICAgICAgInRvdGFsRGFpbHkiIDogewogICAgICAgICJFTkVSQ19LQ0FMIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiRW5lcmd5IiwKICAgICAgICAgICJxdWFudGl0eSIgOiA0NS4wOTgxMTI1LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiRkFUIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiRmF0IiwKICAgICAgICAgICJxdWFudGl0eSIgOiA3NC40MDc4NjE1Mzg0NjE1MywKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIkZBU0FUIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiU2F0dXJhdGVkIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA2OS41OTk4MzUsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJDSE9DREYiIDogewogICAgICAgICAgImxhYmVsIiA6ICJDYXJicyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMC4zMTg1MjA4MzMzMzMzMzMzLAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiRklCVEciIDogewogICAgICAgICAgImxhYmVsIiA6ICJGaWJlciIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMS4wNzI3LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiUFJPQ05UIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiUHJvdGVpbiIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMjE3Ljk2ODUwNSwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIkNIT0xFIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiQ2hvbGVzdGVyb2wiLAogICAgICAgICAgInF1YW50aXR5IiA6IDExMS4zNiwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIk5BIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiU29kaXVtIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA1MC43MjIxMTAxMjUsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJDQSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkNhbGNpdW0iLAogICAgICAgICAgInF1YW50aXR5IiA6IDYuODY1MTY5OTgyNzk1ODEsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJNRyIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIk1hZ25lc2l1bSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMzEuNzcyMDYyOTk0MzI0OTc2LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiSyIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlBvdGFzc2l1bSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMjQuNzUyMDk3MTYxOTAwNDEsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJGRSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIklyb24iLAogICAgICAgICAgInF1YW50aXR5IiA6IDIzLjM2Mzk0MDYxMTg1NzkxMywKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlpOIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiWmluYyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMzguMjc2OTkwNTIzNzg2Mjk2LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiUCIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlBob3NwaG9ydXMiLAogICAgICAgICAgInF1YW50aXR5IiA6IDEzMC4xMDExNDI4NTcxNDI4NiwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlZJVEFfUkFFIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBBIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxNC4wNTE3NSwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlZJVEMiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEMiLAogICAgICAgICAgInF1YW50aXR5IiA6IDAuMSwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlRISUEiIDogewogICAgICAgICAgImxhYmVsIiA6ICJUaGlhbWluIChCMSkiLAogICAgICAgICAgInF1YW50aXR5IiA6IDI3LjYzNTI0OTk5OTk5OTk5NiwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlJJQkYiIDogewogICAgICAgICAgImxhYmVsIiA6ICJSaWJvZmxhdmluIChCMikiLAogICAgICAgICAgInF1YW50aXR5IiA6IDM0LjM0MTM0NjE1Mzg0NjE1LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiTklBIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiTmlhY2luIChCMykiLAogICAgICAgICAgInF1YW50aXR5IiA6IDMyMy40Mzk1MTA5Mzc0OTk5NiwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlZJVEI2QSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQjYiLAogICAgICAgICAgInF1YW50aXR5IiA6IDIxMy43MzkyMTE1Mzg0NjE1MiwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIkZPTERGRSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkZvbGF0ZSBlcXVpdmFsZW50ICh0b3RhbCkiLAogICAgICAgICAgInF1YW50aXR5IiA6IDUuNTA5NTYyNDk5OTk5OTk5NSwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlZJVEIxMiIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQjEyIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA3My45NSwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlZJVEQiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEQiLAogICAgICAgICAgInF1YW50aXR5IiA6IDEzLjkyLAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiVE9DUEhBIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBFIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA5LjUxMjI2NjY2NjY2NjY2NywKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlZJVEsxIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBLIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA2LjAyMjc3MDgzMzMzMzMzMywKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0KICAgICAgfSwKICAgICAgImRpZ2VzdCIgOiBbIHsKICAgICAgICAibGFiZWwiIDogIkZhdCIsCiAgICAgICAgInRhZyIgOiAiRkFUIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6ICJmYXRDb250ZW50IiwKICAgICAgICAidG90YWwiIDogNDguMzY1MTA5OTk5OTk5OTk0LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogNzQuNDA3ODYxNTM4NDYxNTMsCiAgICAgICAgInVuaXQiIDogImciLAogICAgICAgICJzdWIiIDogWyB7CiAgICAgICAgICAibGFiZWwiIDogIlNhdHVyYXRlZCIsCiAgICAgICAgICAidGFnIiA6ICJGQVNBVCIsCiAgICAgICAgICAic2NoZW1hT3JnVGFnIiA6ICJzYXR1cmF0ZWRGYXRDb250ZW50IiwKICAgICAgICAgICJ0b3RhbCIgOiAxMy45MTk5NjcsCiAgICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgICAiZGFpbHkiIDogNjkuNTk5ODM1LAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwgewogICAgICAgICAgImxhYmVsIiA6ICJUcmFucyIsCiAgICAgICAgICAidGFnIiA6ICJGQVRSTiIsCiAgICAgICAgICAic2NoZW1hT3JnVGFnIiA6ICJ0cmFuc0ZhdENvbnRlbnQiLAogICAgICAgICAgInRvdGFsIiA6IDAuNTQ4MDk5OTk5OTk5OTk5OSwKICAgICAgICAgICJoYXNSREkiIDogZmFsc2UsCiAgICAgICAgICAiZGFpbHkiIDogMC4wLAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwgewogICAgICAgICAgImxhYmVsIiA6ICJNb25vdW5zYXR1cmF0ZWQiLAogICAgICAgICAgInRhZyIgOiAiRkFNUyIsCiAgICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgICAidG90YWwiIDogMTkuOTU0ODAyNzUsCiAgICAgICAgICAiaGFzUkRJIiA6IGZhbHNlLAogICAgICAgICAgImRhaWx5IiA6IDAuMCwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sIHsKICAgICAgICAgICJsYWJlbCIgOiAiUG9seXVuc2F0dXJhdGVkIiwKICAgICAgICAgICJ0YWciIDogIkZBUFUiLAogICAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICAgInRvdGFsIiA6IDEwLjI1Mjk1NTQ5OTk5OTk5OSwKICAgICAgICAgICJoYXNSREkiIDogZmFsc2UsCiAgICAgICAgICAiZGFpbHkiIDogMC4wLAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSBdCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIkNhcmJzIiwKICAgICAgICAidGFnIiA6ICJDSE9DREYiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogImNhcmJvaHlkcmF0ZUNvbnRlbnQiLAogICAgICAgICJ0b3RhbCIgOiAwLjk1NTU2MjUsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAwLjMxODUyMDgzMzMzMzMzMzMsCiAgICAgICAgInVuaXQiIDogImciLAogICAgICAgICJzdWIiIDogWyB7CiAgICAgICAgICAibGFiZWwiIDogIkNhcmJzIChuZXQpIiwKICAgICAgICAgICJ0YWciIDogIkNIT0NERi5uZXQiLAogICAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICAgInRvdGFsIiA6IDAuNjg3Mzg3NSwKICAgICAgICAgICJoYXNSREkiIDogZmFsc2UsCiAgICAgICAgICAiZGFpbHkiIDogMC4wLAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwgewogICAgICAgICAgImxhYmVsIiA6ICJGaWJlciIsCiAgICAgICAgICAidGFnIiA6ICJGSUJURyIsCiAgICAgICAgICAic2NoZW1hT3JnVGFnIiA6ICJmaWJlckNvbnRlbnQiLAogICAgICAgICAgInRvdGFsIiA6IDAuMjY4MTc1LAogICAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICAgImRhaWx5IiA6IDEuMDcyNywKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sIHsKICAgICAgICAgICJsYWJlbCIgOiAiU3VnYXJzIiwKICAgICAgICAgICJ0YWciIDogIlNVR0FSIiwKICAgICAgICAgICJzY2hlbWFPcmdUYWciIDogInN1Z2FyQ29udGVudCIsCiAgICAgICAgICAidG90YWwiIDogMC4wMTgxNCwKICAgICAgICAgICJoYXNSREkiIDogZmFsc2UsCiAgICAgICAgICAiZGFpbHkiIDogMC4wLAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwgewogICAgICAgICAgImxhYmVsIiA6ICJTdWdhcnMsIGFkZGVkIiwKICAgICAgICAgICJ0YWciIDogIlNVR0FSLmFkZGVkIiwKICAgICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAgICJ0b3RhbCIgOiAwLjAsCiAgICAgICAgICAiaGFzUkRJIiA6IGZhbHNlLAogICAgICAgICAgImRhaWx5IiA6IDAuMCwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0gXQogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJQcm90ZWluIiwKICAgICAgICAidGFnIiA6ICJQUk9DTlQiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogInByb3RlaW5Db250ZW50IiwKICAgICAgICAidG90YWwiIDogMTA4Ljk4NDI1MjUsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAyMTcuOTY4NTA1LAogICAgICAgICJ1bml0IiA6ICJnIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJDaG9sZXN0ZXJvbCIsCiAgICAgICAgInRhZyIgOiAiQ0hPTEUiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogImNob2xlc3Rlcm9sQ29udGVudCIsCiAgICAgICAgInRvdGFsIiA6IDMzNC4wOCwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDExMS4zNiwKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlNvZGl1bSIsCiAgICAgICAgInRhZyIgOiAiTkEiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogInNvZGl1bUNvbnRlbnQiLAogICAgICAgICJ0b3RhbCIgOiAxMjE3LjMzMDY0MywKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDUwLjcyMjExMDEyNSwKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIkNhbGNpdW0iLAogICAgICAgICJ0YWciIDogIkNBIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDY4LjY1MTY5OTgyNzk1ODEsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiA2Ljg2NTE2OTk4Mjc5NTgxLAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiTWFnbmVzaXVtIiwKICAgICAgICAidGFnIiA6ICJNRyIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAxMzMuNDQyNjY0NTc2MTY0OSwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDMxLjc3MjA2Mjk5NDMyNDk3NiwKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlBvdGFzc2l1bSIsCiAgICAgICAgInRhZyIgOiAiSyIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAxMTYzLjM0ODU2NjYwOTMxOTMsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAyNC43NTIwOTcxNjE5MDA0MSwKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIklyb24iLAogICAgICAgICJ0YWciIDogIkZFIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDQuMjA1NTA5MzEwMTM0NDI0LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMjMuMzYzOTQwNjExODU3OTEzLAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiWmluYyIsCiAgICAgICAgInRhZyIgOiAiWk4iLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogNC4yMTA0Njg5NTc2MTY0OTIsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAzOC4yNzY5OTA1MjM3ODYyOTYsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJQaG9zcGhvcnVzIiwKICAgICAgICAidGFnIiA6ICJQIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDkxMC43MDgsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAxMzAuMTAxMTQyODU3MTQyODYsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEEiLAogICAgICAgICJ0YWciIDogIlZJVEFfUkFFIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDEyNi40NjU3NSwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDE0LjA1MTc1LAogICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQyIsCiAgICAgICAgInRhZyIgOiAiVklUQyIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAwLjA5LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMC4xLAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiVGhpYW1pbiAoQjEpIiwKICAgICAgICAidGFnIiA6ICJUSElBIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDAuMzMxNjIyOTk5OTk5OTk5OTUsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAyNy42MzUyNDk5OTk5OTk5OTYsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJSaWJvZmxhdmluIChCMikiLAogICAgICAgICJ0YWciIDogIlJJQkYiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMC40NDY0Mzc1LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMzQuMzQxMzQ2MTUzODQ2MTUsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJOaWFjaW4gKEIzKSIsCiAgICAgICAgInRhZyIgOiAiTklBIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDUxLjc1MDMyMTc1LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMzIzLjQzOTUxMDkzNzQ5OTk2LAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBCNiIsCiAgICAgICAgInRhZyIgOiAiVklUQjZBIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDIuNzc4NjA5NzQ5OTk5OTk5OCwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDIxMy43MzkyMTE1Mzg0NjE1MiwKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIkZvbGF0ZSBlcXVpdmFsZW50ICh0b3RhbCkiLAogICAgICAgICJ0YWciIDogIkZPTERGRSIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAyMi4wMzgyNDk5OTk5OTk5OTgsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiA1LjUwOTU2MjQ5OTk5OTk5OTUsCiAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiRm9sYXRlIChmb29kKSIsCiAgICAgICAgInRhZyIgOiAiRk9MRkQiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMjIuMDM4MjQ5OTk5OTk5OTk4LAogICAgICAgICJoYXNSREkiIDogZmFsc2UsCiAgICAgICAgImRhaWx5IiA6IDAuMCwKICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJGb2xpYyBhY2lkIiwKICAgICAgICAidGFnIiA6ICJGT0xBQyIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAwLjAsCiAgICAgICAgImhhc1JESSIgOiBmYWxzZSwKICAgICAgICAiZGFpbHkiIDogMC4wLAogICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQjEyIiwKICAgICAgICAidGFnIiA6ICJWSVRCMTIiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMS43NzQ4LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogNzMuOTUsCiAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBEIiwKICAgICAgICAidGFnIiA6ICJWSVREIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDIuMDg4LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMTMuOTIsCiAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBFIiwKICAgICAgICAidGFnIiA6ICJUT0NQSEEiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMS40MjY4NCwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDkuNTEyMjY2NjY2NjY2NjY3LAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBLIiwKICAgICAgICAidGFnIiA6ICJWSVRLMSIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiA3LjIyNzMyNDk5OTk5OTk5OTYsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiA2LjAyMjc3MDgzMzMzMzMzMywKICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICB9IF0KICAgIH0sCiAgICAiYm9va21hcmtlZCIgOiBmYWxzZSwKICAgICJib3VnaHQiIDogZmFsc2UKICB9LCB7CiAgICAicmVjaXBlIiA6IHsKICAgICAgInVyaSIgOiAiaHR0cDovL3d3dy5lZGFtYW0uY29tL29udG9sb2dpZXMvZWRhbWFtLm93bCNyZWNpcGVfYWM0Nzk1NjI3MDMwY2E3MGIwNzk1Zjk2NjQxMzUwY2IiLAogICAgICAibGFiZWwiIDogIlNhZ2UgUGVzdG8gUm9hc3RlZCBDaGlja2VuIiwKICAgICAgImltYWdlIiA6ICJodHRwczovL3d3dy5lZGFtYW0uY29tL3dlYi1pbWcvY2Q1L2NkNTgxMDkxNDYyYmRiOWNmOWU0ZjU2NzViMjJlMGYwLmpwZyIsCiAgICAgICJzb3VyY2UiIDogIk5vdCBXaXRob3V0IFNhbHQiLAogICAgICAidXJsIiA6ICJodHRwOi8vbm90d2l0aG91dHNhbHQuY29tL3NhZ2Utd2FsbnV0LXBlc3RvLXRocmVlLXdheXMvIiwKICAgICAgInNoYXJlQXMiIDogImh0dHA6Ly93d3cuZWRhbWFtLmNvbS9yZWNpcGUvc2FnZS1wZXN0by1yb2FzdGVkLWNoaWNrZW4tYWM0Nzk1NjI3MDMwY2E3MGIwNzk1Zjk2NjQxMzUwY2IvY2hpY2tlbiIsCiAgICAgICJ5aWVsZCIgOiA0LjAsCiAgICAgICJkaWV0TGFiZWxzIiA6IFsgIkxvdy1DYXJiIiBdLAogICAgICAiaGVhbHRoTGFiZWxzIiA6IFsgIlN1Z2FyLUNvbnNjaW91cyIsICJQZWFudXQtRnJlZSIsICJBbGNvaG9sLUZyZWUiIF0sCiAgICAgICJjYXV0aW9ucyIgOiBbIF0sCiAgICAgICJpbmdyZWRpZW50TGluZXMiIDogWyAiMSBtZWRpdW0tc2l6ZSB3aG9sZSBjaGlja2VuIChhYm91dCA0IGxicykiLCAiU2FsdCBhbmQgcGVwcGVyIChhYm91dCDCviB0c3Aga29zaGVyIHNhbHQgcGVyIGxiKSIsICLCvSBjdXAgc2FnZSBwZXN0byIgXSwKICAgICAgImluZ3JlZGllbnRzIiA6IFsgewogICAgICAgICJ0ZXh0IiA6ICIxIG1lZGl1bS1zaXplIHdob2xlIGNoaWNrZW4gKGFib3V0IDQgbGJzKSIsCiAgICAgICAgIndlaWdodCIgOiAxODE0LjM2OTQ4LAogICAgICAgICJmb29kQ2F0ZWdvcnkiIDogIk1lYXRzIgogICAgICB9LCB7CiAgICAgICAgInRleHQiIDogIlNhbHQgYW5kIHBlcHBlciAoYWJvdXQgwr4gdHNwIGtvc2hlciBzYWx0IHBlciBsYikiLAogICAgICAgICJ3ZWlnaHQiIDogMTEuNzAyMjE2ODgsCiAgICAgICAgImZvb2RDYXRlZ29yeSIgOiAiUGFudHJ5IgogICAgICB9LCB7CiAgICAgICAgInRleHQiIDogIlNhbHQgYW5kIHBlcHBlciAoYWJvdXQgwr4gdHNwIGtvc2hlciBzYWx0IHBlciBsYikiLAogICAgICAgICJ3ZWlnaHQiIDogNS44NTExMDg0NCwKICAgICAgICAiZm9vZENhdGVnb3J5IiA6ICJQYW50cnkiCiAgICAgIH0sIHsKICAgICAgICAidGV4dCIgOiAiwr0gY3VwIHNhZ2UgcGVzdG8iLAogICAgICAgICJ3ZWlnaHQiIDogMTM2LjAsCiAgICAgICAgImZvb2RDYXRlZ29yeSIgOiAiUGFudHJ5IgogICAgICB9IF0sCiAgICAgICJjYWxvcmllcyIgOiAzMTE5LjYwOTA2ODY4NTk3MzQsCiAgICAgICJ0b3RhbFdlaWdodCIgOiAxOTYyLjIxNzY1MTY1MjMzNjYsCiAgICAgICJ0b3RhbFRpbWUiIDogMC4wLAogICAgICAidG90YWxOdXRyaWVudHMiIDogewogICAgICAgICJFTkVSQ19LQ0FMIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiRW5lcmd5IiwKICAgICAgICAgICJxdWFudGl0eSIgOiAzMTE5LjYwOTA2ODY4NTk3MzQsCiAgICAgICAgICAidW5pdCIgOiAia2NhbCIKICAgICAgICB9LAogICAgICAgICJGQVQiIDogewogICAgICAgICAgImxhYmVsIiA6ICJGYXQiLAogICAgICAgICAgInF1YW50aXR5IiA6IDIyOC43ODMyMTI2OTY5MTY2LAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwKICAgICAgICAiRkFTQVQiIDogewogICAgICAgICAgImxhYmVsIiA6ICJTYXR1cmF0ZWQiLAogICAgICAgICAgInF1YW50aXR5IiA6IDU4Ljk4NzMyNTIyNzk3NjQ4LAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwKICAgICAgICAiRkFUUk4iIDogewogICAgICAgICAgImxhYmVsIiA6ICJUcmFucyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMS4xOTY3NTgxMDkwMDgsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LAogICAgICAgICJGQU1TIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiTW9ub3Vuc2F0dXJhdGVkIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA3Ny4wMzA1NjU0NjY3MzE1OSwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sCiAgICAgICAgIkZBUFUiIDogewogICAgICAgICAgImxhYmVsIiA6ICJQb2x5dW5zYXR1cmF0ZWQiLAogICAgICAgICAgInF1YW50aXR5IiA6IDM5LjkwOTIwNTMyMDk1MTIsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LAogICAgICAgICJDSE9DREYiIDogewogICAgICAgICAgImxhYmVsIiA6ICJDYXJicyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTQuNDM4NDEzMDYwODYzMTQ4LAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwKICAgICAgICAiRklCVEciIDogewogICAgICAgICAgImxhYmVsIiA6ICJGaWJlciIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMy43NzI0NjUyNjY3ODA2NzQ0LAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwKICAgICAgICAiU1VHQVIiIDogewogICAgICAgICAgImxhYmVsIiA6ICJTdWdhcnMiLAogICAgICAgICAgInF1YW50aXR5IiA6IDAuMDM3NDQ3MDk0MDE2LAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwKICAgICAgICAiUFJPQ05UIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiUHJvdGVpbiIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMjM2Ljg4OTM4MTk5NzMxNiwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sCiAgICAgICAgIkNIT0xFIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiQ2hvbGVzdGVyb2wiLAogICAgICAgICAgInF1YW50aXR5IiA6IDkzNi4wMjUwNjQwMTM0ODMxLAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIk5BIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiU29kaXVtIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA0NTQ5LjE1MTg1NDAwNTQ1MSwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJDQSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkNhbGNpdW0iLAogICAgICAgICAgInF1YW50aXR5IiA6IDM4OS45OTU4OTA5Nzg3Njc1MywKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJNRyIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIk1hZ25lc2l1bSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMjU2LjgxOTYxNTM0NDUyMzM2LAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIksiIDogewogICAgICAgICAgImxhYmVsIiA6ICJQb3Rhc3NpdW0iLAogICAgICAgICAgInF1YW50aXR5IiA6IDI0MTAuMDY4NjUxOTIwNTg2NSwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJGRSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIklyb24iLAogICAgICAgICAgInF1YW50aXR5IiA6IDE1LjEzMDA3NjQwMjkxNTcyMywKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJaTiIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlppbmMiLAogICAgICAgICAgInF1YW50aXR5IiA6IDE2LjIzODAyODU4MTQ4ODMzNiwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJQIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiUGhvc3Bob3J1cyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTgyMi44ODg0ODM1NDMxOTk4LAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIlZJVEFfUkFFIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBBIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA1MDcuNDI2MDEwMzAyNzk5OTcsCiAgICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICAgIH0sCiAgICAgICAgIlZJVEMiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEMiLAogICAgICAgICAgInF1YW50aXR5IiA6IDE5Ljc0MDMzOTk0MjQsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiVEhJQSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlRoaWFtaW4gKEIxKSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMC43NDY1ODE5NDQ5NTUxOTk5LAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIlJJQkYiIDogewogICAgICAgICAgImxhYmVsIiA6ICJSaWJvZmxhdmluIChCMikiLAogICAgICAgICAgInF1YW50aXR5IiA6IDEuNDkxMDU3NDkwODcxOTk5OCwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJOSUEiIDogewogICAgICAgICAgImxhYmVsIiA6ICJOaWFjaW4gKEIzKSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogODMuOTc1NjYwNjM3MTMzMiwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJWSVRCNkEiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEI2IiwKICAgICAgICAgICJxdWFudGl0eSIgOiA0LjMzNTIyNjA4Nzk2MDM5OSwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJGT0xERkUiIDogewogICAgICAgICAgImxhYmVsIiA6ICJGb2xhdGUgZXF1aXZhbGVudCAodG90YWwpIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA3NS4wMjA5NjMyMTg3OTk5OSwKICAgICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgICAgfSwKICAgICAgICAiRk9MRkQiIDogewogICAgICAgICAgImxhYmVsIiA6ICJGb2xhdGUgKGZvb2QpIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA3NS4wMjA5NjMyMTg3OTk5OSwKICAgICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgICAgfSwKICAgICAgICAiVklUQjEyIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBCMTIiLAogICAgICAgICAgInF1YW50aXR5IiA6IDMuODI0NjkwODYzODQsCiAgICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICAgIH0sCiAgICAgICAgIlZJVEQiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEQiLAogICAgICAgICAgInF1YW50aXR5IiA6IDIuNDY3NTQyNDkyOCwKICAgICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgICAgfSwKICAgICAgICAiVE9DUEhBIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBFIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAzLjc2MjE2NTI2Njk3NiwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJWSVRLMSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gSyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMjguMDg0ODMzMjEyMjc5OTk2LAogICAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgICB9CiAgICAgIH0sCiAgICAgICJ0b3RhbERhaWx5IiA6IHsKICAgICAgICAiRU5FUkNfS0NBTCIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkVuZXJneSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTU1Ljk4MDQ1MzQzNDI5ODY1LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiRkFUIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiRmF0IiwKICAgICAgICAgICJxdWFudGl0eSIgOiAzNTEuOTc0MTczMzc5ODcxNywKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIkZBU0FUIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiU2F0dXJhdGVkIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAyOTQuOTM2NjI2MTM5ODgyNCwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIkNIT0NERiIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkNhcmJzIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA0LjgxMjgwNDM1MzYyMTA0OSwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIkZJQlRHIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiRmliZXIiLAogICAgICAgICAgInF1YW50aXR5IiA6IDE1LjA4OTg2MTA2NzEyMjY5OCwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlBST0NOVCIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlByb3RlaW4iLAogICAgICAgICAgInF1YW50aXR5IiA6IDQ3My43Nzg3NjM5OTQ2MzIsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJDSE9MRSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkNob2xlc3Rlcm9sIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAzMTIuMDA4MzU0NjcxMTYxMDQsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJOQSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlNvZGl1bSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTg5LjU0Nzk5MzkxNjg5MzgsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJDQSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkNhbGNpdW0iLAogICAgICAgICAgInF1YW50aXR5IiA6IDM4Ljk5OTU4OTA5Nzg3Njc2LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiTUciIDogewogICAgICAgICAgImxhYmVsIiA6ICJNYWduZXNpdW0iLAogICAgICAgICAgInF1YW50aXR5IiA6IDYxLjE0NzUyNzQ2Mjk4MTc1NiwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIksiIDogewogICAgICAgICAgImxhYmVsIiA6ICJQb3Rhc3NpdW0iLAogICAgICAgICAgInF1YW50aXR5IiA6IDUxLjI3ODA1NjQyMzg0MjI2NiwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIkZFIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiSXJvbiIsCiAgICAgICAgICAicXVhbnRpdHkiIDogODQuMDU1OTgwMDE2MTk4NDYsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJaTiIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlppbmMiLAogICAgICAgICAgInF1YW50aXR5IiA6IDE0Ny42MTg0NDE2NDk4OTM5NSwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlAiIDogewogICAgICAgICAgImxhYmVsIiA6ICJQaG9zcGhvcnVzIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAyNjAuNDEyNjQwNTA2MTcxNCwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlZJVEFfUkFFIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBBIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA1Ni4zODA2Njc4MTE0MjIyMiwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlZJVEMiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEMiLAogICAgICAgICAgInF1YW50aXR5IiA6IDIxLjkzMzcxMTA0NzExMTExLAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiVEhJQSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlRoaWFtaW4gKEIxKSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNjIuMjE1MTYyMDc5NiwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlJJQkYiIDogewogICAgICAgICAgImxhYmVsIiA6ICJSaWJvZmxhdmluIChCMikiLAogICAgICAgICAgInF1YW50aXR5IiA6IDExNC42OTY3MzAwNjcwNzY5LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiTklBIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiTmlhY2luIChCMykiLAogICAgICAgICAgInF1YW50aXR5IiA6IDUyNC44NDc4Nzg5ODIwODI1LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiVklUQjZBIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBCNiIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMzMzLjQ3ODkyOTg0MzEwNzY2LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiRk9MREZFIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiRm9sYXRlIGVxdWl2YWxlbnQgKHRvdGFsKSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTguNzU1MjQwODA0Njk5OTk4LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiVklUQjEyIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBCMTIiLAogICAgICAgICAgInF1YW50aXR5IiA6IDE1OS4zNjIxMTkzMjY2NjY2NiwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlZJVEQiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEQiLAogICAgICAgICAgInF1YW50aXR5IiA6IDE2LjQ1MDI4MzI4NTMzMzMzLAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiVE9DUEhBIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBFIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAyNS4wODExMDE3Nzk4NCwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlZJVEsxIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBLIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAyMy40MDQwMjc2NzY4OTk5OTcsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9CiAgICAgIH0sCiAgICAgICJkaWdlc3QiIDogWyB7CiAgICAgICAgImxhYmVsIiA6ICJGYXQiLAogICAgICAgICJ0YWciIDogIkZBVCIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiAiZmF0Q29udGVudCIsCiAgICAgICAgInRvdGFsIiA6IDIyOC43ODMyMTI2OTY5MTY2LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMzUxLjk3NDE3MzM3OTg3MTcsCiAgICAgICAgInVuaXQiIDogImciLAogICAgICAgICJzdWIiIDogWyB7CiAgICAgICAgICAibGFiZWwiIDogIlNhdHVyYXRlZCIsCiAgICAgICAgICAidGFnIiA6ICJGQVNBVCIsCiAgICAgICAgICAic2NoZW1hT3JnVGFnIiA6ICJzYXR1cmF0ZWRGYXRDb250ZW50IiwKICAgICAgICAgICJ0b3RhbCIgOiA1OC45ODczMjUyMjc5NzY0OCwKICAgICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAgICJkYWlseSIgOiAyOTQuOTM2NjI2MTM5ODgyNCwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sIHsKICAgICAgICAgICJsYWJlbCIgOiAiVHJhbnMiLAogICAgICAgICAgInRhZyIgOiAiRkFUUk4iLAogICAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiAidHJhbnNGYXRDb250ZW50IiwKICAgICAgICAgICJ0b3RhbCIgOiAxLjE5Njc1ODEwOTAwOCwKICAgICAgICAgICJoYXNSREkiIDogZmFsc2UsCiAgICAgICAgICAiZGFpbHkiIDogMC4wLAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwgewogICAgICAgICAgImxhYmVsIiA6ICJNb25vdW5zYXR1cmF0ZWQiLAogICAgICAgICAgInRhZyIgOiAiRkFNUyIsCiAgICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgICAidG90YWwiIDogNzcuMDMwNTY1NDY2NzMxNTksCiAgICAgICAgICAiaGFzUkRJIiA6IGZhbHNlLAogICAgICAgICAgImRhaWx5IiA6IDAuMCwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sIHsKICAgICAgICAgICJsYWJlbCIgOiAiUG9seXVuc2F0dXJhdGVkIiwKICAgICAgICAgICJ0YWciIDogIkZBUFUiLAogICAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICAgInRvdGFsIiA6IDM5LjkwOTIwNTMyMDk1MTIsCiAgICAgICAgICAiaGFzUkRJIiA6IGZhbHNlLAogICAgICAgICAgImRhaWx5IiA6IDAuMCwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0gXQogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJDYXJicyIsCiAgICAgICAgInRhZyIgOiAiQ0hPQ0RGIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6ICJjYXJib2h5ZHJhdGVDb250ZW50IiwKICAgICAgICAidG90YWwiIDogMTQuNDM4NDEzMDYwODYzMTQ4LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogNC44MTI4MDQzNTM2MjEwNDksCiAgICAgICAgInVuaXQiIDogImciLAogICAgICAgICJzdWIiIDogWyB7CiAgICAgICAgICAibGFiZWwiIDogIkNhcmJzIChuZXQpIiwKICAgICAgICAgICJ0YWciIDogIkNIT0NERi5uZXQiLAogICAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICAgInRvdGFsIiA6IDEwLjY2NTk0Nzc5NDA4MjQ3NCwKICAgICAgICAgICJoYXNSREkiIDogZmFsc2UsCiAgICAgICAgICAiZGFpbHkiIDogMC4wLAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwgewogICAgICAgICAgImxhYmVsIiA6ICJGaWJlciIsCiAgICAgICAgICAidGFnIiA6ICJGSUJURyIsCiAgICAgICAgICAic2NoZW1hT3JnVGFnIiA6ICJmaWJlckNvbnRlbnQiLAogICAgICAgICAgInRvdGFsIiA6IDMuNzcyNDY1MjY2NzgwNjc0NCwKICAgICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAgICJkYWlseSIgOiAxNS4wODk4NjEwNjcxMjI2OTgsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LCB7CiAgICAgICAgICAibGFiZWwiIDogIlN1Z2FycyIsCiAgICAgICAgICAidGFnIiA6ICJTVUdBUiIsCiAgICAgICAgICAic2NoZW1hT3JnVGFnIiA6ICJzdWdhckNvbnRlbnQiLAogICAgICAgICAgInRvdGFsIiA6IDAuMDM3NDQ3MDk0MDE2LAogICAgICAgICAgImhhc1JESSIgOiBmYWxzZSwKICAgICAgICAgICJkYWlseSIgOiAwLjAsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LCB7CiAgICAgICAgICAibGFiZWwiIDogIlN1Z2FycywgYWRkZWQiLAogICAgICAgICAgInRhZyIgOiAiU1VHQVIuYWRkZWQiLAogICAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICAgInRvdGFsIiA6IDAuMCwKICAgICAgICAgICJoYXNSREkiIDogZmFsc2UsCiAgICAgICAgICAiZGFpbHkiIDogMC4wLAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSBdCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlByb3RlaW4iLAogICAgICAgICJ0YWciIDogIlBST0NOVCIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiAicHJvdGVpbkNvbnRlbnQiLAogICAgICAgICJ0b3RhbCIgOiAyMzYuODg5MzgxOTk3MzE2LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogNDczLjc3ODc2Mzk5NDYzMiwKICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiQ2hvbGVzdGVyb2wiLAogICAgICAgICJ0YWciIDogIkNIT0xFIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6ICJjaG9sZXN0ZXJvbENvbnRlbnQiLAogICAgICAgICJ0b3RhbCIgOiA5MzYuMDI1MDY0MDEzNDgzMSwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDMxMi4wMDgzNTQ2NzExNjEwNCwKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlNvZGl1bSIsCiAgICAgICAgInRhZyIgOiAiTkEiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogInNvZGl1bUNvbnRlbnQiLAogICAgICAgICJ0b3RhbCIgOiA0NTQ5LjE1MTg1NDAwNTQ1MSwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDE4OS41NDc5OTM5MTY4OTM4LAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiQ2FsY2l1bSIsCiAgICAgICAgInRhZyIgOiAiQ0EiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMzg5Ljk5NTg5MDk3ODc2NzUzLAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMzguOTk5NTg5MDk3ODc2NzYsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJNYWduZXNpdW0iLAogICAgICAgICJ0YWciIDogIk1HIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDI1Ni44MTk2MTUzNDQ1MjMzNiwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDYxLjE0NzUyNzQ2Mjk4MTc1NiwKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlBvdGFzc2l1bSIsCiAgICAgICAgInRhZyIgOiAiSyIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAyNDEwLjA2ODY1MTkyMDU4NjUsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiA1MS4yNzgwNTY0MjM4NDIyNjYsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJJcm9uIiwKICAgICAgICAidGFnIiA6ICJGRSIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAxNS4xMzAwNzY0MDI5MTU3MjMsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiA4NC4wNTU5ODAwMTYxOTg0NiwKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlppbmMiLAogICAgICAgICJ0YWciIDogIlpOIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDE2LjIzODAyODU4MTQ4ODMzNiwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDE0Ny42MTg0NDE2NDk4OTM5NSwKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlBob3NwaG9ydXMiLAogICAgICAgICJ0YWciIDogIlAiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMTgyMi44ODg0ODM1NDMxOTk4LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMjYwLjQxMjY0MDUwNjE3MTQsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEEiLAogICAgICAgICJ0YWciIDogIlZJVEFfUkFFIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDUwNy40MjYwMTAzMDI3OTk5NywKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDU2LjM4MDY2NzgxMTQyMjIyLAogICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQyIsCiAgICAgICAgInRhZyIgOiAiVklUQyIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAxOS43NDAzMzk5NDI0LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMjEuOTMzNzExMDQ3MTExMTEsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJUaGlhbWluIChCMSkiLAogICAgICAgICJ0YWciIDogIlRISUEiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMC43NDY1ODE5NDQ5NTUxOTk5LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogNjIuMjE1MTYyMDc5NiwKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlJpYm9mbGF2aW4gKEIyKSIsCiAgICAgICAgInRhZyIgOiAiUklCRiIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAxLjQ5MTA1NzQ5MDg3MTk5OTgsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAxMTQuNjk2NzMwMDY3MDc2OSwKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIk5pYWNpbiAoQjMpIiwKICAgICAgICAidGFnIiA6ICJOSUEiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogODMuOTc1NjYwNjM3MTMzMiwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDUyNC44NDc4Nzg5ODIwODI1LAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBCNiIsCiAgICAgICAgInRhZyIgOiAiVklUQjZBIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDQuMzM1MjI2MDg3OTYwMzk5LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMzMzLjQ3ODkyOTg0MzEwNzY2LAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiRm9sYXRlIGVxdWl2YWxlbnQgKHRvdGFsKSIsCiAgICAgICAgInRhZyIgOiAiRk9MREZFIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDc1LjAyMDk2MzIxODc5OTk5LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMTguNzU1MjQwODA0Njk5OTk4LAogICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIkZvbGF0ZSAoZm9vZCkiLAogICAgICAgICJ0YWciIDogIkZPTEZEIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDc1LjAyMDk2MzIxODc5OTk5LAogICAgICAgICJoYXNSREkiIDogZmFsc2UsCiAgICAgICAgImRhaWx5IiA6IDAuMCwKICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJGb2xpYyBhY2lkIiwKICAgICAgICAidGFnIiA6ICJGT0xBQyIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAwLjAsCiAgICAgICAgImhhc1JESSIgOiBmYWxzZSwKICAgICAgICAiZGFpbHkiIDogMC4wLAogICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQjEyIiwKICAgICAgICAidGFnIiA6ICJWSVRCMTIiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMy44MjQ2OTA4NjM4NCwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDE1OS4zNjIxMTkzMjY2NjY2NiwKICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEQiLAogICAgICAgICJ0YWciIDogIlZJVEQiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMi40Njc1NDI0OTI4LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMTYuNDUwMjgzMjg1MzMzMzMsCiAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBFIiwKICAgICAgICAidGFnIiA6ICJUT0NQSEEiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMy43NjIxNjUyNjY5NzYsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAyNS4wODExMDE3Nzk4NCwKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gSyIsCiAgICAgICAgInRhZyIgOiAiVklUSzEiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMjguMDg0ODMzMjEyMjc5OTk2LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMjMuNDA0MDI3Njc2ODk5OTk3LAogICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgIH0gXQogICAgfSwKICAgICJib29rbWFya2VkIiA6IGZhbHNlLAogICAgImJvdWdodCIgOiBmYWxzZQogIH0sIHsKICAgICJyZWNpcGUiIDogewogICAgICAidXJpIiA6ICJodHRwOi8vd3d3LmVkYW1hbS5jb20vb250b2xvZ2llcy9lZGFtYW0ub3dsI3JlY2lwZV9lMTk3YjVlOGVjMDBmMTdlOGU0MGJiNDAwY2YxNzg0ZiIsCiAgICAgICJsYWJlbCIgOiAiUm9hc3QgQ2hpY2tlbiIsCiAgICAgICJpbWFnZSIgOiAiaHR0cHM6Ly93d3cuZWRhbWFtLmNvbS93ZWItaW1nLzFmNS8xZjVlZjQxNDUyNDAwODBjZmMyZmFhYjJhNzRmZjEyYy5qcGciLAogICAgICAic291cmNlIiA6ICJCb24gQXBwZXRpdCIsCiAgICAgICJ1cmwiIDogImh0dHA6Ly93d3cuYm9uYXBwZXRpdC5jb20vcmVjaXBlL3JvYXN0LWNoaWNrZW4iLAogICAgICAic2hhcmVBcyIgOiAiaHR0cDovL3d3dy5lZGFtYW0uY29tL3JlY2lwZS9yb2FzdC1jaGlja2VuLWUxOTdiNWU4ZWMwMGYxN2U4ZTQwYmI0MDBjZjE3ODRmL2NoaWNrZW4iLAogICAgICAieWllbGQiIDogNi4wLAogICAgICAiZGlldExhYmVscyIgOiBbICJMb3ctQ2FyYiIgXSwKICAgICAgImhlYWx0aExhYmVscyIgOiBbICJTdWdhci1Db25zY2lvdXMiLCAiUGVhbnV0LUZyZWUiLCAiVHJlZS1OdXQtRnJlZSIsICJBbGNvaG9sLUZyZWUiIF0sCiAgICAgICJjYXV0aW9ucyIgOiBbIF0sCiAgICAgICJpbmdyZWRpZW50TGluZXMiIDogWyAiMSB0YWJsZXNwb29uIGtvc2hlciBzYWx0IiwgIjEgd2hvbGUgNC1wb3VuZCBjaGlja2VuLCBnaWJsZXRzIHJlc2VydmVkIGZvciBhbm90aGVyIHVzZSIsICIxLzQgY3VwICgxLzIgc3RpY2spIHVuc2FsdGVkIGJ1dHRlciwgbWVsdGVkIiBdLAogICAgICAiaW5ncmVkaWVudHMiIDogWyB7CiAgICAgICAgInRleHQiIDogIjEgdGFibGVzcG9vbiBrb3NoZXIgc2FsdCIsCiAgICAgICAgIndlaWdodCIgOiAxNC41NjI0OTk5OTk3NTM3OTMsCiAgICAgICAgImZvb2RDYXRlZ29yeSIgOiAiUGFudHJ5IgogICAgICB9LCB7CiAgICAgICAgInRleHQiIDogIjEgd2hvbGUgNC1wb3VuZCBjaGlja2VuLCBnaWJsZXRzIHJlc2VydmVkIGZvciBhbm90aGVyIHVzZSIsCiAgICAgICAgIndlaWdodCIgOiA5MjAuMCwKICAgICAgICAiZm9vZENhdGVnb3J5IiA6ICJNZWF0cyIKICAgICAgfSwgewogICAgICAgICJ0ZXh0IiA6ICIxLzQgY3VwICgxLzIgc3RpY2spIHVuc2FsdGVkIGJ1dHRlciwgbWVsdGVkIiwKICAgICAgICAid2VpZ2h0IiA6IDU2Ljc1LAogICAgICAgICJmb29kQ2F0ZWdvcnkiIDogIkRhaXJ5IgogICAgICB9IF0sCiAgICAgICJjYWxvcmllcyIgOiAyMzg0Ljg5NzUsCiAgICAgICJ0b3RhbFdlaWdodCIgOiA5ODAuOTMyODAxMjAyMzMyNCwKICAgICAgInRvdGFsVGltZSIgOiAzMjQuMCwKICAgICAgInRvdGFsTnV0cmllbnRzIiA6IHsKICAgICAgICAiRU5FUkNfS0NBTCIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkVuZXJneSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMjM4NC44OTc1LAogICAgICAgICAgInVuaXQiIDogImtjYWwiCiAgICAgICAgfSwKICAgICAgICAiRkFUIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiRmF0IiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxODQuNTgxOTI1LAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwKICAgICAgICAiRkFTQVQiIDogewogICAgICAgICAgImxhYmVsIiA6ICJTYXR1cmF0ZWQiLAogICAgICAgICAgInF1YW50aXR5IiA6IDY4LjgwMzM0LAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwKICAgICAgICAiRkFUUk4iIDogewogICAgICAgICAgImxhYmVsIiA6ICJUcmFucyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMi43NTI2NjUwMDAwMDAwMDA0LAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwKICAgICAgICAiRkFNUyIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIk1vbm91bnNhdHVyYXRlZCIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNjkuMzM3NDE3NTAwMDAwMDIsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LAogICAgICAgICJGQVBVIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiUG9seXVuc2F0dXJhdGVkIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAzMS40NDI5MDI1MDAwMDAwMDYsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LAogICAgICAgICJDSE9DREYiIDogewogICAgICAgICAgImxhYmVsIiA6ICJDYXJicyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMC4wMzQwNSwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sCiAgICAgICAgIlNVR0FSIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiU3VnYXJzIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAwLjAzNDA1LAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwKICAgICAgICAiUFJPQ05UIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiUHJvdGVpbiIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTcxLjYwMjM3NTAwMDAwMDAyLAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwKICAgICAgICAiQ0hPTEUiIDogewogICAgICAgICAgImxhYmVsIiA6ICJDaG9sZXN0ZXJvbCIsCiAgICAgICAgICAicXVhbnRpdHkiIDogODEyLjAxMjUwMDAwMDAwMDIsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiTkEiIDogewogICAgICAgICAgImxhYmVsIiA6ICJTb2RpdW0iLAogICAgICAgICAgInF1YW50aXR5IiA6IDIyNzEuNDEyNTkwMDAwMDAwNCwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJDQSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkNhbGNpdW0iLAogICAgICAgICAgInF1YW50aXR5IiA6IDExNS44MjM4NzIyODg1NTk4LAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIk1HIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiTWFnbmVzaXVtIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxODUuMTc2ODI4MDEyMDIzMzUsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiSyIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlBvdGFzc2l1bSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTc1Mi43NTQ2MjQwOTYxODY3LAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIkZFIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiSXJvbiIsCiAgICAgICAgICAicXVhbnRpdHkiIDogOC4zMDUxNTMyNDM5Njc2OTgsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiWk4iIDogewogICAgICAgICAgImxhYmVsIiA6ICJaaW5jIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxMi4xMDcyNTc4MDEyMDIzMzUsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiUCIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlBob3NwaG9ydXMiLAogICAgICAgICAgInF1YW50aXR5IiA6IDEzNjYuMDIsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiVklUQV9SQUUiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEEiLAogICAgICAgICAgInF1YW50aXR5IiA6IDc2NS4zNzAwMDAwMDAwMDAxLAogICAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgICB9LAogICAgICAgICJWSVRDIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBDIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxNC43MjAwMDAwMDAwMDAwMDIsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiVEhJQSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlRoaWFtaW4gKEIxKSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMC41NTQ4Mzc1MDAwMDAwMDAxLAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIlJJQkYiIDogewogICAgICAgICAgImxhYmVsIiA6ICJSaWJvZmxhdmluIChCMikiLAogICAgICAgICAgInF1YW50aXR5IiA6IDEuMTIzMjk1MDAwMDAwMDAwMiwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJOSUEiIDogewogICAgICAgICAgImxhYmVsIiA6ICJOaWFjaW4gKEIzKSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNjIuNTkzMDM1MDAwMDAwMDEsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiVklUQjZBIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBCNiIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMy4yMjE3MDI1LAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIkZPTERGRSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkZvbGF0ZSBlcXVpdmFsZW50ICh0b3RhbCkiLAogICAgICAgICAgInF1YW50aXR5IiA6IDU2LjkwMjUsCiAgICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICAgIH0sCiAgICAgICAgIkZPTEZEIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiRm9sYXRlIChmb29kKSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNTYuOTAyNSwKICAgICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgICAgfSwKICAgICAgICAiVklUQjEyIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBCMTIiLAogICAgICAgICAgInF1YW50aXR5IiA6IDIuOTQ4NDc1LAogICAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgICB9LAogICAgICAgICJWSVREIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBEIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAyLjY5MTI1LAogICAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgICB9LAogICAgICAgICJUT0NQSEEiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEUiLAogICAgICAgICAgInF1YW50aXR5IiA6IDQuMDc2NiwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJWSVRLMSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gSyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTcuNzcyNSwKICAgICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgICAgfQogICAgICB9LAogICAgICAidG90YWxEYWlseSIgOiB7CiAgICAgICAgIkVORVJDX0tDQUwiIDogewogICAgICAgICAgImxhYmVsIiA6ICJFbmVyZ3kiLAogICAgICAgICAgInF1YW50aXR5IiA6IDExOS4yNDQ4NzUsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJGQVQiIDogewogICAgICAgICAgImxhYmVsIiA6ICJGYXQiLAogICAgICAgICAgInF1YW50aXR5IiA6IDI4My45NzIxOTIzMDc2OTIzLAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiRkFTQVQiIDogewogICAgICAgICAgImxhYmVsIiA6ICJTYXR1cmF0ZWQiLAogICAgICAgICAgInF1YW50aXR5IiA6IDM0NC4wMTY3LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiQ0hPQ0RGIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiQ2FyYnMiLAogICAgICAgICAgInF1YW50aXR5IiA6IDAuMDExMzQ5OTk5OTk5OTk5OTk5LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiUFJPQ05UIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiUHJvdGVpbiIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMzQzLjIwNDc1MDAwMDAwMDA1LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiQ0hPTEUiIDogewogICAgICAgICAgImxhYmVsIiA6ICJDaG9sZXN0ZXJvbCIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMjcwLjY3MDgzMzMzMzMzMzQsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJOQSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlNvZGl1bSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogOTQuNjQyMTkxMjUwMDAwMDIsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJDQSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkNhbGNpdW0iLAogICAgICAgICAgInF1YW50aXR5IiA6IDExLjU4MjM4NzIyODg1NTk4LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiTUciIDogewogICAgICAgICAgImxhYmVsIiA6ICJNYWduZXNpdW0iLAogICAgICAgICAgInF1YW50aXR5IiA6IDQ0LjA4OTcyMDk1NTI0MzY1NiwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIksiIDogewogICAgICAgICAgImxhYmVsIiA6ICJQb3Rhc3NpdW0iLAogICAgICAgICAgInF1YW50aXR5IiA6IDM3LjI5MjY1MTU3NjUxNDYxLAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiRkUiIDogewogICAgICAgICAgImxhYmVsIiA6ICJJcm9uIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA0Ni4xMzk3NDAyNDQyNjQ5OSwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlpOIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiWmluYyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTEwLjA2NTk4MDAxMDkzMDMzLAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiUCIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlBob3NwaG9ydXMiLAogICAgICAgICAgInF1YW50aXR5IiA6IDE5NS4xNDU3MTQyODU3MTQzLAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiVklUQV9SQUUiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEEiLAogICAgICAgICAgInF1YW50aXR5IiA6IDg1LjA0MTExMTExMTExMTEyLAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiVklUQyIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTYuMzU1NTU1NTU1NTU1NTU4LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiVEhJQSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlRoaWFtaW4gKEIxKSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNDYuMjM2NDU4MzMzMzMzMzQsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJSSUJGIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiUmlib2ZsYXZpbiAoQjIpIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA4Ni40MDczMDc2OTIzMDc3LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiTklBIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiTmlhY2luIChCMykiLAogICAgICAgICAgInF1YW50aXR5IiA6IDM5MS4yMDY0Njg3NTAwMDAwNiwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlZJVEI2QSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQjYiLAogICAgICAgICAgInF1YW50aXR5IiA6IDI0Ny44MjMyNjkyMzA3NjkyMywKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIkZPTERGRSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkZvbGF0ZSBlcXVpdmFsZW50ICh0b3RhbCkiLAogICAgICAgICAgInF1YW50aXR5IiA6IDE0LjIyNTYyNSwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlZJVEIxMiIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQjEyIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxMjIuODUzMTI1MDAwMDAwMDIsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJWSVREIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBEIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxNy45NDE2NjY2NjY2NjY2NjYsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJUT0NQSEEiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEUiLAogICAgICAgICAgInF1YW50aXR5IiA6IDI3LjE3NzMzMzMzMzMzMzMzMywKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlZJVEsxIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBLIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxNC44MTA0MTY2NjY2NjY2NjcsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9CiAgICAgIH0sCiAgICAgICJkaWdlc3QiIDogWyB7CiAgICAgICAgImxhYmVsIiA6ICJGYXQiLAogICAgICAgICJ0YWciIDogIkZBVCIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiAiZmF0Q29udGVudCIsCiAgICAgICAgInRvdGFsIiA6IDE4NC41ODE5MjUsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAyODMuOTcyMTkyMzA3NjkyMywKICAgICAgICAidW5pdCIgOiAiZyIsCiAgICAgICAgInN1YiIgOiBbIHsKICAgICAgICAgICJsYWJlbCIgOiAiU2F0dXJhdGVkIiwKICAgICAgICAgICJ0YWciIDogIkZBU0FUIiwKICAgICAgICAgICJzY2hlbWFPcmdUYWciIDogInNhdHVyYXRlZEZhdENvbnRlbnQiLAogICAgICAgICAgInRvdGFsIiA6IDY4LjgwMzM0LAogICAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICAgImRhaWx5IiA6IDM0NC4wMTY3LAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwgewogICAgICAgICAgImxhYmVsIiA6ICJUcmFucyIsCiAgICAgICAgICAidGFnIiA6ICJGQVRSTiIsCiAgICAgICAgICAic2NoZW1hT3JnVGFnIiA6ICJ0cmFuc0ZhdENvbnRlbnQiLAogICAgICAgICAgInRvdGFsIiA6IDIuNzUyNjY1MDAwMDAwMDAwNCwKICAgICAgICAgICJoYXNSREkiIDogZmFsc2UsCiAgICAgICAgICAiZGFpbHkiIDogMC4wLAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwgewogICAgICAgICAgImxhYmVsIiA6ICJNb25vdW5zYXR1cmF0ZWQiLAogICAgICAgICAgInRhZyIgOiAiRkFNUyIsCiAgICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgICAidG90YWwiIDogNjkuMzM3NDE3NTAwMDAwMDIsCiAgICAgICAgICAiaGFzUkRJIiA6IGZhbHNlLAogICAgICAgICAgImRhaWx5IiA6IDAuMCwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sIHsKICAgICAgICAgICJsYWJlbCIgOiAiUG9seXVuc2F0dXJhdGVkIiwKICAgICAgICAgICJ0YWciIDogIkZBUFUiLAogICAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICAgInRvdGFsIiA6IDMxLjQ0MjkwMjUwMDAwMDAwNiwKICAgICAgICAgICJoYXNSREkiIDogZmFsc2UsCiAgICAgICAgICAiZGFpbHkiIDogMC4wLAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSBdCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIkNhcmJzIiwKICAgICAgICAidGFnIiA6ICJDSE9DREYiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogImNhcmJvaHlkcmF0ZUNvbnRlbnQiLAogICAgICAgICJ0b3RhbCIgOiAwLjAzNDA1LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMC4wMTEzNDk5OTk5OTk5OTk5OTksCiAgICAgICAgInVuaXQiIDogImciLAogICAgICAgICJzdWIiIDogWyB7CiAgICAgICAgICAibGFiZWwiIDogIkNhcmJzIChuZXQpIiwKICAgICAgICAgICJ0YWciIDogIkNIT0NERi5uZXQiLAogICAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICAgInRvdGFsIiA6IDAuMDM0MDUsCiAgICAgICAgICAiaGFzUkRJIiA6IGZhbHNlLAogICAgICAgICAgImRhaWx5IiA6IDAuMCwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sIHsKICAgICAgICAgICJsYWJlbCIgOiAiRmliZXIiLAogICAgICAgICAgInRhZyIgOiAiRklCVEciLAogICAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiAiZmliZXJDb250ZW50IiwKICAgICAgICAgICJ0b3RhbCIgOiAwLjAsCiAgICAgICAgICAiaGFzUkRJIiA6IGZhbHNlLAogICAgICAgICAgImRhaWx5IiA6IDAuMCwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sIHsKICAgICAgICAgICJsYWJlbCIgOiAiU3VnYXJzIiwKICAgICAgICAgICJ0YWciIDogIlNVR0FSIiwKICAgICAgICAgICJzY2hlbWFPcmdUYWciIDogInN1Z2FyQ29udGVudCIsCiAgICAgICAgICAidG90YWwiIDogMC4wMzQwNSwKICAgICAgICAgICJoYXNSREkiIDogZmFsc2UsCiAgICAgICAgICAiZGFpbHkiIDogMC4wLAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwgewogICAgICAgICAgImxhYmVsIiA6ICJTdWdhcnMsIGFkZGVkIiwKICAgICAgICAgICJ0YWciIDogIlNVR0FSLmFkZGVkIiwKICAgICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAgICJ0b3RhbCIgOiAwLjAsCiAgICAgICAgICAiaGFzUkRJIiA6IGZhbHNlLAogICAgICAgICAgImRhaWx5IiA6IDAuMCwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0gXQogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJQcm90ZWluIiwKICAgICAgICAidGFnIiA6ICJQUk9DTlQiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogInByb3RlaW5Db250ZW50IiwKICAgICAgICAidG90YWwiIDogMTcxLjYwMjM3NTAwMDAwMDAyLAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMzQzLjIwNDc1MDAwMDAwMDA1LAogICAgICAgICJ1bml0IiA6ICJnIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJDaG9sZXN0ZXJvbCIsCiAgICAgICAgInRhZyIgOiAiQ0hPTEUiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogImNob2xlc3Rlcm9sQ29udGVudCIsCiAgICAgICAgInRvdGFsIiA6IDgxMi4wMTI1MDAwMDAwMDAyLAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMjcwLjY3MDgzMzMzMzMzMzQsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJTb2RpdW0iLAogICAgICAgICJ0YWciIDogIk5BIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6ICJzb2RpdW1Db250ZW50IiwKICAgICAgICAidG90YWwiIDogMjI3MS40MTI1OTAwMDAwMDA0LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogOTQuNjQyMTkxMjUwMDAwMDIsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJDYWxjaXVtIiwKICAgICAgICAidGFnIiA6ICJDQSIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAxMTUuODIzODcyMjg4NTU5OCwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDExLjU4MjM4NzIyODg1NTk4LAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiTWFnbmVzaXVtIiwKICAgICAgICAidGFnIiA6ICJNRyIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAxODUuMTc2ODI4MDEyMDIzMzUsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiA0NC4wODk3MjA5NTUyNDM2NTYsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJQb3Rhc3NpdW0iLAogICAgICAgICJ0YWciIDogIksiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMTc1Mi43NTQ2MjQwOTYxODY3LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMzcuMjkyNjUxNTc2NTE0NjEsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJJcm9uIiwKICAgICAgICAidGFnIiA6ICJGRSIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiA4LjMwNTE1MzI0Mzk2NzY5OCwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDQ2LjEzOTc0MDI0NDI2NDk5LAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiWmluYyIsCiAgICAgICAgInRhZyIgOiAiWk4iLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMTIuMTA3MjU3ODAxMjAyMzM1LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMTEwLjA2NTk4MDAxMDkzMDMzLAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiUGhvc3Bob3J1cyIsCiAgICAgICAgInRhZyIgOiAiUCIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAxMzY2LjAyLAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMTk1LjE0NTcxNDI4NTcxNDMsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEEiLAogICAgICAgICJ0YWciIDogIlZJVEFfUkFFIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDc2NS4zNzAwMDAwMDAwMDAxLAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogODUuMDQxMTExMTExMTExMTIsCiAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBDIiwKICAgICAgICAidGFnIiA6ICJWSVRDIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDE0LjcyMDAwMDAwMDAwMDAwMiwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDE2LjM1NTU1NTU1NTU1NTU1OCwKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlRoaWFtaW4gKEIxKSIsCiAgICAgICAgInRhZyIgOiAiVEhJQSIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAwLjU1NDgzNzUwMDAwMDAwMDEsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiA0Ni4yMzY0NTgzMzMzMzMzNCwKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlJpYm9mbGF2aW4gKEIyKSIsCiAgICAgICAgInRhZyIgOiAiUklCRiIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAxLjEyMzI5NTAwMDAwMDAwMDIsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiA4Ni40MDczMDc2OTIzMDc3LAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiTmlhY2luIChCMykiLAogICAgICAgICJ0YWciIDogIk5JQSIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiA2Mi41OTMwMzUwMDAwMDAwMSwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDM5MS4yMDY0Njg3NTAwMDAwNiwKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQjYiLAogICAgICAgICJ0YWciIDogIlZJVEI2QSIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAzLjIyMTcwMjUsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAyNDcuODIzMjY5MjMwNzY5MjMsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJGb2xhdGUgZXF1aXZhbGVudCAodG90YWwpIiwKICAgICAgICAidGFnIiA6ICJGT0xERkUiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogNTYuOTAyNSwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDE0LjIyNTYyNSwKICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJGb2xhdGUgKGZvb2QpIiwKICAgICAgICAidGFnIiA6ICJGT0xGRCIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiA1Ni45MDI1LAogICAgICAgICJoYXNSREkiIDogZmFsc2UsCiAgICAgICAgImRhaWx5IiA6IDAuMCwKICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJGb2xpYyBhY2lkIiwKICAgICAgICAidGFnIiA6ICJGT0xBQyIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAwLjAsCiAgICAgICAgImhhc1JESSIgOiBmYWxzZSwKICAgICAgICAiZGFpbHkiIDogMC4wLAogICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQjEyIiwKICAgICAgICAidGFnIiA6ICJWSVRCMTIiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMi45NDg0NzUsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAxMjIuODUzMTI1MDAwMDAwMDIsCiAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBEIiwKICAgICAgICAidGFnIiA6ICJWSVREIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDIuNjkxMjUsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAxNy45NDE2NjY2NjY2NjY2NjYsCiAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBFIiwKICAgICAgICAidGFnIiA6ICJUT0NQSEEiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogNC4wNzY2LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMjcuMTc3MzMzMzMzMzMzMzMzLAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBLIiwKICAgICAgICAidGFnIiA6ICJWSVRLMSIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAxNy43NzI1LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMTQuODEwNDE2NjY2NjY2NjY3LAogICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgIH0gXQogICAgfSwKICAgICJib29rbWFya2VkIiA6IGZhbHNlLAogICAgImJvdWdodCIgOiBmYWxzZQogIH0sIHsKICAgICJyZWNpcGUiIDogewogICAgICAidXJpIiA6ICJodHRwOi8vd3d3LmVkYW1hbS5jb20vb250b2xvZ2llcy9lZGFtYW0ub3dsI3JlY2lwZV82YjcxNTA2ZWFlZDQxMDJjMGI5N2RjZTFlYWRkZDlhNiIsCiAgICAgICJsYWJlbCIgOiAiUm9hc3QgQ2hpY2tlbiIsCiAgICAgICJpbWFnZSIgOiAiaHR0cHM6Ly93d3cuZWRhbWFtLmNvbS93ZWItaW1nLzUyYy81MmNkZDg3YjY3YjE2MWNjZThlOGEzZjE1MjM3MzY4Zi5qcGciLAogICAgICAic291cmNlIiA6ICJQaW9uZWVyIFdvbWFuIiwKICAgICAgInVybCIgOiAiaHR0cDovL3RoZXBpb25lZXJ3b21hbi5jb20vY29va2luZy8yMDEyLzA4L3JvYXN0LWNoaWNrZW4vIiwKICAgICAgInNoYXJlQXMiIDogImh0dHA6Ly93d3cuZWRhbWFtLmNvbS9yZWNpcGUvcm9hc3QtY2hpY2tlbi02YjcxNTA2ZWFlZDQxMDJjMGI5N2RjZTFlYWRkZDlhNi9jaGlja2VuIiwKICAgICAgInlpZWxkIiA6IDQuMCwKICAgICAgImRpZXRMYWJlbHMiIDogWyAiTG93LUNhcmIiIF0sCiAgICAgICJoZWFsdGhMYWJlbHMiIDogWyAiU3VnYXItQ29uc2Npb3VzIiwgIlBlYW51dC1GcmVlIiwgIlRyZWUtTnV0LUZyZWUiLCAiQWxjb2hvbC1GcmVlIiBdLAogICAgICAiY2F1dGlvbnMiIDogWyBdLAogICAgICAiaW5ncmVkaWVudExpbmVzIiA6IFsgIjEgd2hvbGUgQ2hpY2tlbiwgUmluc2VkIEFuZCBQYXR0ZWQgRHJ5IiwgIjMvNCBjdXBzIEJ1dHRlciwgU29mdGVuZWQiLCAiMyB3aG9sZSBMZW1vbnMiLCAiNCBzcHJpZ3MgUm9zZW1hcnkiLCAiU2FsdCBBbmQgUGVwcGVyLCB0byB0YXN0ZSIgXSwKICAgICAgImluZ3JlZGllbnRzIiA6IFsgewogICAgICAgICJ0ZXh0IiA6ICIxIHdob2xlIENoaWNrZW4sIFJpbnNlZCBBbmQgUGF0dGVkIERyeSIsCiAgICAgICAgIndlaWdodCIgOiA5MjAuMCwKICAgICAgICAiZm9vZENhdGVnb3J5IiA6ICJNZWF0cyIKICAgICAgfSwgewogICAgICAgICJ0ZXh0IiA6ICIzLzQgY3VwcyBCdXR0ZXIsIFNvZnRlbmVkIiwKICAgICAgICAid2VpZ2h0IiA6IDE3MC4yNSwKICAgICAgICAiZm9vZENhdGVnb3J5IiA6ICJEYWlyeSIKICAgICAgfSwgewogICAgICAgICJ0ZXh0IiA6ICIzIHdob2xlIExlbW9ucyIsCiAgICAgICAgIndlaWdodCIgOiAxNzQuMCwKICAgICAgICAiZm9vZENhdGVnb3J5IiA6ICJGcmVzaCBwcm9kdWNlIgogICAgICB9LCB7CiAgICAgICAgInRleHQiIDogIjQgc3ByaWdzIFJvc2VtYXJ5IiwKICAgICAgICAid2VpZ2h0IiA6IDIwLjAsCiAgICAgICAgImZvb2RDYXRlZ29yeSIgOiAiRnJlc2ggcHJvZHVjZSIKICAgICAgfSwgewogICAgICAgICJ0ZXh0IiA6ICJTYWx0IEFuZCBQZXBwZXIsIHRvIHRhc3RlIiwKICAgICAgICAid2VpZ2h0IiA6IDcuNzA1NSwKICAgICAgICAiZm9vZENhdGVnb3J5IiA6ICJQYW50cnkiCiAgICAgIH0sIHsKICAgICAgICAidGV4dCIgOiAiU2FsdCBBbmQgUGVwcGVyLCB0byB0YXN0ZSIsCiAgICAgICAgIndlaWdodCIgOiAzLjg1Mjc1LAogICAgICAgICJmb29kQ2F0ZWdvcnkiIDogIlBhbnRyeSIKICAgICAgfSBdLAogICAgICAiY2Fsb3JpZXMiIDogMzI4NS4wMjI5MDI1LAogICAgICAidG90YWxXZWlnaHQiIDogMTI5NC4wOTcwNzE1MTU3Mzg3LAogICAgICAidG90YWxUaW1lIiA6IDAuMCwKICAgICAgInRvdGFsTnV0cmllbnRzIiA6IHsKICAgICAgICAiRU5FUkNfS0NBTCIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkVuZXJneSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMzI4NS4wMjI5MDI1LAogICAgICAgICAgInVuaXQiIDogImtjYWwiCiAgICAgICAgfSwKICAgICAgICAiRkFUIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiRmF0IiwKICAgICAgICAgICJxdWFudGl0eSIgOiAyNzguNDYxMzc0NjUwMDAwMSwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sCiAgICAgICAgIkZBU0FUIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiU2F0dXJhdGVkIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxMjcuNzk1MTEwMjgsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LAogICAgICAgICJGQVRSTiIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlRyYW5zIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA2LjQ3MzE5NTAwMDAwMDAwMDUsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LAogICAgICAgICJGQU1TIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiTW9ub3Vuc2F0dXJhdGVkIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA5My40NzU4NjQzMjI1LAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwKICAgICAgICAiRkFQVSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlBvbHl1bnNhdHVyYXRlZCIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMzUuMjcwMjE3OTQ1MDAwMDA2LAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwKICAgICAgICAiQ0hPQ0RGIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiQ2FyYnMiLAogICAgICAgICAgInF1YW50aXR5IiA6IDIyLjkyMjc4MzYyNSwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sCiAgICAgICAgIkZJQlRHIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiRmliZXIiLAogICAgICAgICAgInF1YW50aXR5IiA6IDguNjY2NzQ1NzUsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LAogICAgICAgICJTVUdBUiIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlN1Z2FycyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNC40NzY4MDc2LAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwKICAgICAgICAiUFJPQ05UIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiUHJvdGVpbiIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTc1LjU0MzQyNTcyNTAwMDAyLAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwKICAgICAgICAiQ0hPTEUiIDogewogICAgICAgICAgImxhYmVsIiA6ICJDaG9sZXN0ZXJvbCIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTA1Ni4wMzc1MDAwMDAwMDAxLAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIk5BIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiU29kaXVtIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAyOTk1LjQ1NzE4MzA3MDAwMDYsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiQ0EiIDogewogICAgICAgICAgImxhYmVsIiA6ICJDYWxjaXVtIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAyNjkuMjA2MzE5NjYzNzc3MywKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJNRyIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIk1hZ25lc2l1bSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMjI2LjE3MzE0NTcxNTE1NzM3LAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIksiIDogewogICAgICAgICAgImxhYmVsIiA6ICJQb3Rhc3NpdW0iLAogICAgICAgICAgInF1YW50aXR5IiA6IDIyMDUuMDYyNTkzMjIxMjU5MiwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJGRSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIklyb24iLAogICAgICAgICAgInF1YW50aXR5IiA6IDExLjA4MTkzMzI4NjAwMTk0MSwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJaTiIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlppbmMiLAogICAgICAgICAgInF1YW50aXR5IiA6IDEyLjU0NzQ2NzA0NjUxNTc0LAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIlAiIDogewogICAgICAgICAgImxhYmVsIiA6ICJQaG9zcGhvcnVzIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxNDQwLjM4NzM0NDk5OTk5OTksCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiVklUQV9SQUUiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEEiLAogICAgICAgICAgInF1YW50aXR5IiA6IDE1NzMuNjkwMjQyNSwKICAgICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgICAgfSwKICAgICAgICAiVklUQyIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTExLjMsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiVEhJQSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlRoaWFtaW4gKEIxKSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMC42NDE0NzM0NzAwMDAwMDAxLAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIlJJQkYiIDogewogICAgICAgICAgImxhYmVsIiA6ICJSaWJvZmxhdmluIChCMikiLAogICAgICAgICAgInF1YW50aXR5IiA6IDEuMjM0MDE5OTUsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiTklBIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiTmlhY2luIChCMykiLAogICAgICAgICAgInF1YW50aXR5IiA6IDYzLjA0MTE0MTkzMjUwMDAxLAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIlZJVEI2QSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQjYiLAogICAgICAgICAgInF1YW50aXR5IiA6IDMuNDQyNzE5MDAyNSwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJGT0xERkUiIDogewogICAgICAgICAgImxhYmVsIiA6ICJGb2xhdGUgZXF1aXZhbGVudCAodG90YWwpIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxMDEuOTAyNDY3NSwKICAgICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgICAgfSwKICAgICAgICAiRk9MRkQiIDogewogICAgICAgICAgImxhYmVsIiA6ICJGb2xhdGUgKGZvb2QpIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxMDEuOTAyNDY3NSwKICAgICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgICAgfSwKICAgICAgICAiVklUQjEyIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBCMTIiLAogICAgICAgICAgInF1YW50aXR5IiA6IDMuMTQxNDI1MDAwMDAwMDAwNCwKICAgICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgICAgfSwKICAgICAgICAiVklURCIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gRCIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNC4zOTM3NTAwMDAwMDAwMDEsCiAgICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICAgIH0sCiAgICAgICAgIlRPQ1BIQSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gRSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNy4wMTA4Njg2LAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIlZJVEsxIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBLIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAzMi4wMjQ0NTE3NSwKICAgICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgICAgfQogICAgICB9LAogICAgICAidG90YWxEYWlseSIgOiB7CiAgICAgICAgIkVORVJDX0tDQUwiIDogewogICAgICAgICAgImxhYmVsIiA6ICJFbmVyZ3kiLAogICAgICAgICAgInF1YW50aXR5IiA6IDE2NC4yNTExNDUxMjUsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJGQVQiIDogewogICAgICAgICAgImxhYmVsIiA6ICJGYXQiLAogICAgICAgICAgInF1YW50aXR5IiA6IDQyOC40MDIxMTQ4NDYxNTQsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJGQVNBVCIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlNhdHVyYXRlZCIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNjM4Ljk3NTU1MTQwMDAwMDEsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJDSE9DREYiIDogewogICAgICAgICAgImxhYmVsIiA6ICJDYXJicyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNy42NDA5Mjc4NzUwMDAwMDEsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJGSUJURyIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkZpYmVyIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAzNC42NjY5ODMsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJQUk9DTlQiIDogewogICAgICAgICAgImxhYmVsIiA6ICJQcm90ZWluIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAzNTEuMDg2ODUxNDUwMDAwMDQsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJDSE9MRSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkNob2xlc3Rlcm9sIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAzNTIuMDEyNTAwMDAwMDAwMDUsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJOQSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlNvZGl1bSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTI0LjgxMDcxNTk2MTI1MDAzLAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiQ0EiIDogewogICAgICAgICAgImxhYmVsIiA6ICJDYWxjaXVtIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAyNi45MjA2MzE5NjYzNzc3MzQsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJNRyIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIk1hZ25lc2l1bSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNTMuODUwNzQ4OTc5Nzk5MzgsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJLIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiUG90YXNzaXVtIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA0Ni45MTYyMjUzODc2ODYzNywKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIkZFIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiSXJvbiIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNjEuNTY2Mjk2MDMzMzQ0MTE2LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiWk4iIDogewogICAgICAgICAgImxhYmVsIiA6ICJaaW5jIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxMTQuMDY3ODgyMjQxMDUyMTcsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJQIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiUGhvc3Bob3J1cyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMjA1Ljc2OTYyMDcxNDI4NTcsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJWSVRBX1JBRSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTc0Ljg1NDQ3MTM4ODg4ODksCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJWSVRDIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBDIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxMjMuNjY2NjY2NjY2NjY2NjcsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJUSElBIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVGhpYW1pbiAoQjEpIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA1My40NTYxMjI1MDAwMDAwMSwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlJJQkYiIDogewogICAgICAgICAgImxhYmVsIiA6ICJSaWJvZmxhdmluIChCMikiLAogICAgICAgICAgInF1YW50aXR5IiA6IDk0LjkyNDYxMTUzODQ2MTUzLAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiTklBIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiTmlhY2luIChCMykiLAogICAgICAgICAgInF1YW50aXR5IiA6IDM5NC4wMDcxMzcwNzgxMjUxLAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiVklUQjZBIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBCNiIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMjY0LjgyNDUzODY1Mzg0NjE2LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiRk9MREZFIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiRm9sYXRlIGVxdWl2YWxlbnQgKHRvdGFsKSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMjUuNDc1NjE2ODc1LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiVklUQjEyIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBCMTIiLAogICAgICAgICAgInF1YW50aXR5IiA6IDEzMC44OTI3MDgzMzMzMzMzNiwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlZJVEQiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEQiLAogICAgICAgICAgInF1YW50aXR5IiA6IDI5LjI5MTY2NjY2NjY2NjY3LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiVE9DUEhBIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBFIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA0Ni43MzkxMjQsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJWSVRLMSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gSyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMjYuNjg3MDQzMTI1LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfQogICAgICB9LAogICAgICAiZGlnZXN0IiA6IFsgewogICAgICAgICJsYWJlbCIgOiAiRmF0IiwKICAgICAgICAidGFnIiA6ICJGQVQiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogImZhdENvbnRlbnQiLAogICAgICAgICJ0b3RhbCIgOiAyNzguNDYxMzc0NjUwMDAwMSwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDQyOC40MDIxMTQ4NDYxNTQsCiAgICAgICAgInVuaXQiIDogImciLAogICAgICAgICJzdWIiIDogWyB7CiAgICAgICAgICAibGFiZWwiIDogIlNhdHVyYXRlZCIsCiAgICAgICAgICAidGFnIiA6ICJGQVNBVCIsCiAgICAgICAgICAic2NoZW1hT3JnVGFnIiA6ICJzYXR1cmF0ZWRGYXRDb250ZW50IiwKICAgICAgICAgICJ0b3RhbCIgOiAxMjcuNzk1MTEwMjgsCiAgICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgICAiZGFpbHkiIDogNjM4Ljk3NTU1MTQwMDAwMDEsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LCB7CiAgICAgICAgICAibGFiZWwiIDogIlRyYW5zIiwKICAgICAgICAgICJ0YWciIDogIkZBVFJOIiwKICAgICAgICAgICJzY2hlbWFPcmdUYWciIDogInRyYW5zRmF0Q29udGVudCIsCiAgICAgICAgICAidG90YWwiIDogNi40NzMxOTUwMDAwMDAwMDA1LAogICAgICAgICAgImhhc1JESSIgOiBmYWxzZSwKICAgICAgICAgICJkYWlseSIgOiAwLjAsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LCB7CiAgICAgICAgICAibGFiZWwiIDogIk1vbm91bnNhdHVyYXRlZCIsCiAgICAgICAgICAidGFnIiA6ICJGQU1TIiwKICAgICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAgICJ0b3RhbCIgOiA5My40NzU4NjQzMjI1LAogICAgICAgICAgImhhc1JESSIgOiBmYWxzZSwKICAgICAgICAgICJkYWlseSIgOiAwLjAsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LCB7CiAgICAgICAgICAibGFiZWwiIDogIlBvbHl1bnNhdHVyYXRlZCIsCiAgICAgICAgICAidGFnIiA6ICJGQVBVIiwKICAgICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAgICJ0b3RhbCIgOiAzNS4yNzAyMTc5NDUwMDAwMDYsCiAgICAgICAgICAiaGFzUkRJIiA6IGZhbHNlLAogICAgICAgICAgImRhaWx5IiA6IDAuMCwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0gXQogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJDYXJicyIsCiAgICAgICAgInRhZyIgOiAiQ0hPQ0RGIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6ICJjYXJib2h5ZHJhdGVDb250ZW50IiwKICAgICAgICAidG90YWwiIDogMjIuOTIyNzgzNjI1LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogNy42NDA5Mjc4NzUwMDAwMDEsCiAgICAgICAgInVuaXQiIDogImciLAogICAgICAgICJzdWIiIDogWyB7CiAgICAgICAgICAibGFiZWwiIDogIkNhcmJzIChuZXQpIiwKICAgICAgICAgICJ0YWciIDogIkNIT0NERi5uZXQiLAogICAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICAgInRvdGFsIiA6IDE0LjI1NjAzNzg3NSwKICAgICAgICAgICJoYXNSREkiIDogZmFsc2UsCiAgICAgICAgICAiZGFpbHkiIDogMC4wLAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwgewogICAgICAgICAgImxhYmVsIiA6ICJGaWJlciIsCiAgICAgICAgICAidGFnIiA6ICJGSUJURyIsCiAgICAgICAgICAic2NoZW1hT3JnVGFnIiA6ICJmaWJlckNvbnRlbnQiLAogICAgICAgICAgInRvdGFsIiA6IDguNjY2NzQ1NzUsCiAgICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgICAiZGFpbHkiIDogMzQuNjY2OTgzLAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwgewogICAgICAgICAgImxhYmVsIiA6ICJTdWdhcnMiLAogICAgICAgICAgInRhZyIgOiAiU1VHQVIiLAogICAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiAic3VnYXJDb250ZW50IiwKICAgICAgICAgICJ0b3RhbCIgOiA0LjQ3NjgwNzYsCiAgICAgICAgICAiaGFzUkRJIiA6IGZhbHNlLAogICAgICAgICAgImRhaWx5IiA6IDAuMCwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sIHsKICAgICAgICAgICJsYWJlbCIgOiAiU3VnYXJzLCBhZGRlZCIsCiAgICAgICAgICAidGFnIiA6ICJTVUdBUi5hZGRlZCIsCiAgICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgICAidG90YWwiIDogMC4wLAogICAgICAgICAgImhhc1JESSIgOiBmYWxzZSwKICAgICAgICAgICJkYWlseSIgOiAwLjAsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9IF0KICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiUHJvdGVpbiIsCiAgICAgICAgInRhZyIgOiAiUFJPQ05UIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6ICJwcm90ZWluQ29udGVudCIsCiAgICAgICAgInRvdGFsIiA6IDE3NS41NDM0MjU3MjUwMDAwMiwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDM1MS4wODY4NTE0NTAwMDAwNCwKICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiQ2hvbGVzdGVyb2wiLAogICAgICAgICJ0YWciIDogIkNIT0xFIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6ICJjaG9sZXN0ZXJvbENvbnRlbnQiLAogICAgICAgICJ0b3RhbCIgOiAxMDU2LjAzNzUwMDAwMDAwMDEsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAzNTIuMDEyNTAwMDAwMDAwMDUsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJTb2RpdW0iLAogICAgICAgICJ0YWciIDogIk5BIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6ICJzb2RpdW1Db250ZW50IiwKICAgICAgICAidG90YWwiIDogMjk5NS40NTcxODMwNzAwMDA2LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMTI0LjgxMDcxNTk2MTI1MDAzLAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiQ2FsY2l1bSIsCiAgICAgICAgInRhZyIgOiAiQ0EiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMjY5LjIwNjMxOTY2Mzc3NzMsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAyNi45MjA2MzE5NjYzNzc3MzQsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJNYWduZXNpdW0iLAogICAgICAgICJ0YWciIDogIk1HIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDIyNi4xNzMxNDU3MTUxNTczNywKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDUzLjg1MDc0ODk3OTc5OTM4LAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiUG90YXNzaXVtIiwKICAgICAgICAidGFnIiA6ICJLIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDIyMDUuMDYyNTkzMjIxMjU5MiwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDQ2LjkxNjIyNTM4NzY4NjM3LAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiSXJvbiIsCiAgICAgICAgInRhZyIgOiAiRkUiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMTEuMDgxOTMzMjg2MDAxOTQxLAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogNjEuNTY2Mjk2MDMzMzQ0MTE2LAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiWmluYyIsCiAgICAgICAgInRhZyIgOiAiWk4iLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMTIuNTQ3NDY3MDQ2NTE1NzQsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAxMTQuMDY3ODgyMjQxMDUyMTcsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJQaG9zcGhvcnVzIiwKICAgICAgICAidGFnIiA6ICJQIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDE0NDAuMzg3MzQ0OTk5OTk5OSwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDIwNS43Njk2MjA3MTQyODU3LAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBBIiwKICAgICAgICAidGFnIiA6ICJWSVRBX1JBRSIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAxNTczLjY5MDI0MjUsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAxNzQuODU0NDcxMzg4ODg4OSwKICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEMiLAogICAgICAgICJ0YWciIDogIlZJVEMiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMTExLjMsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAxMjMuNjY2NjY2NjY2NjY2NjcsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJUaGlhbWluIChCMSkiLAogICAgICAgICJ0YWciIDogIlRISUEiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMC42NDE0NzM0NzAwMDAwMDAxLAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogNTMuNDU2MTIyNTAwMDAwMDEsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJSaWJvZmxhdmluIChCMikiLAogICAgICAgICJ0YWciIDogIlJJQkYiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMS4yMzQwMTk5NSwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDk0LjkyNDYxMTUzODQ2MTUzLAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiTmlhY2luIChCMykiLAogICAgICAgICJ0YWciIDogIk5JQSIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiA2My4wNDExNDE5MzI1MDAwMSwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDM5NC4wMDcxMzcwNzgxMjUxLAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBCNiIsCiAgICAgICAgInRhZyIgOiAiVklUQjZBIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDMuNDQyNzE5MDAyNSwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDI2NC44MjQ1Mzg2NTM4NDYxNiwKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIkZvbGF0ZSBlcXVpdmFsZW50ICh0b3RhbCkiLAogICAgICAgICJ0YWciIDogIkZPTERGRSIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAxMDEuOTAyNDY3NSwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDI1LjQ3NTYxNjg3NSwKICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJGb2xhdGUgKGZvb2QpIiwKICAgICAgICAidGFnIiA6ICJGT0xGRCIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAxMDEuOTAyNDY3NSwKICAgICAgICAiaGFzUkRJIiA6IGZhbHNlLAogICAgICAgICJkYWlseSIgOiAwLjAsCiAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiRm9saWMgYWNpZCIsCiAgICAgICAgInRhZyIgOiAiRk9MQUMiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMC4wLAogICAgICAgICJoYXNSREkiIDogZmFsc2UsCiAgICAgICAgImRhaWx5IiA6IDAuMCwKICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEIxMiIsCiAgICAgICAgInRhZyIgOiAiVklUQjEyIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDMuMTQxNDI1MDAwMDAwMDAwNCwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDEzMC44OTI3MDgzMzMzMzMzNiwKICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEQiLAogICAgICAgICJ0YWciIDogIlZJVEQiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogNC4zOTM3NTAwMDAwMDAwMDEsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAyOS4yOTE2NjY2NjY2NjY2NywKICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEUiLAogICAgICAgICJ0YWciIDogIlRPQ1BIQSIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiA3LjAxMDg2ODYsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiA0Ni43MzkxMjQsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEsiLAogICAgICAgICJ0YWciIDogIlZJVEsxIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDMyLjAyNDQ1MTc1LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMjYuNjg3MDQzMTI1LAogICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgIH0gXQogICAgfSwKICAgICJib29rbWFya2VkIiA6IGZhbHNlLAogICAgImJvdWdodCIgOiBmYWxzZQogIH0gXQp9 + http_version: + recorded_at: Wed, 31 Oct 2018 17:43:37 GMT +recorded_with: VCR 4.0.0 diff --git a/test/controllers/.keep b/test/controllers/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/test/controllers/homepage_controller_test.rb b/test/controllers/homepage_controller_test.rb new file mode 100644 index 000000000..3817f5981 --- /dev/null +++ b/test/controllers/homepage_controller_test.rb @@ -0,0 +1,7 @@ +require "test_helper" + +describe HomepageController do + # it "must be a real test" do + # flunk "Need real tests" + # end +end diff --git a/test/controllers/recipes_controller_test.rb b/test/controllers/recipes_controller_test.rb new file mode 100644 index 000000000..503214a28 --- /dev/null +++ b/test/controllers/recipes_controller_test.rb @@ -0,0 +1,23 @@ +require "test_helper" + +describe RecipesController do + # it "must be a real test" do + # flunk "Need real tests" + # end + it "can get the index path" do + VCR.use_cassette('recipes') + get root_path + must_respond_with :ok + end + + it "can get the search form" do + get search_recipes + must_respond_with :ok + end + + it "can get the recipe show" do + get recipe_show + must_respond_with :ok + end + +end diff --git a/test/fixtures/.keep b/test/fixtures/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/test/fixtures/files/.keep b/test/fixtures/files/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/test/fixtures/recipes.yml b/test/fixtures/recipes.yml new file mode 100644 index 000000000..dc3ee79b5 --- /dev/null +++ b/test/fixtures/recipes.yml @@ -0,0 +1,11 @@ +# Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html + +# This model initially had no columns defined. If you add columns to the +# model remove the "{}" from the fixture names and add the columns immediately +# below each fixture, per the syntax in the comments below +# +one: {} +# column: value +# +two: {} +# column: value diff --git a/test/helpers/.keep b/test/helpers/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/test/integration/.keep b/test/integration/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/test/lib/muncher_api_wrapper_test.rb b/test/lib/muncher_api_wrapper_test.rb new file mode 100644 index 000000000..507125c7a --- /dev/null +++ b/test/lib/muncher_api_wrapper_test.rb @@ -0,0 +1,22 @@ +require 'test_helper' + +describe MuncherApiWrapper do + it 'can search recipes' do + VCR.use_cassette('recipes') do + query = "chicken" + recipes = MuncherApiWrapper.get_recipes(query) + expect (recipes.length).must_be :>, 0 + recipes.each do |recipe| + expect(recipe).must_respond_to :name + expect(recipe).must_respond_to :uri + end + end + # it "can show details of valid recipe" do + # VCR.use_cassette('recipe_id') do + # recipe_id = + # recipe = MuncherApiWrapper.get_recipe(recipe_id) + # + # end + + end +end diff --git a/test/lib/recipe_test.rb b/test/lib/recipe_test.rb new file mode 100644 index 000000000..0dfb57d0d --- /dev/null +++ b/test/lib/recipe_test.rb @@ -0,0 +1,22 @@ +require 'test_helper' + +describe Recipe do + it "will raise an argument error if created with less than 2 params" do + expect { + Recipe.new + }.must_raise ArgumentError + + expect { + Recipe.new ('name') + }.must_raise ArgumentError + end + it "can be created with a name and uri" do + myRecipe = Recipe.new(name: "chicken", uri: "http://cat.com", image: '') + expect (myRecipe.name).must_equal "chicken" + expect (myRecipe.uri).must_equal "http://cat.com" + end + it "can be created with optional parameters" do + myRecipe = Recipe.new("name": "beef", "uri": "http://fig.com", "image": "/image/carrot.jpg") + end + +end diff --git a/test/mailers/.keep b/test/mailers/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/test/models/.keep b/test/models/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/test/models/recipe_test.rb b/test/models/recipe_test.rb new file mode 100644 index 000000000..0e085057e --- /dev/null +++ b/test/models/recipe_test.rb @@ -0,0 +1,9 @@ +require "test_helper" + +describe Recipe do + let(:recipe) { Recipe.new } + + it "must be valid" do + value(recipe).must_be :valid? + end +end diff --git a/test/test_helper.rb b/test/test_helper.rb new file mode 100644 index 000000000..f1c2b4fdc --- /dev/null +++ b/test/test_helper.rb @@ -0,0 +1,44 @@ +ENV["RAILS_ENV"] = "test" +require File.expand_path("../../config/environment", __FILE__) +require "rails/test_help" +require "minitest/rails" +require "minitest/reporters" # for Colorized output +require "vcr" +require 'webmock/minitest' +# For colorful output! +Minitest::Reporters.use!( + Minitest::Reporters::SpecReporter.new, + ENV, + Minitest.backtrace_filter +) +VCR.configure do |config| + config.cassette_library_dir = + 'test/cassettes' + #tie VCR and webmock + config.hook_into :webmock + config.default_cassette_options = { + record: :new_episodes, + #match but record if different if method, uri and body are the same + match_requests_on: [:method, :uri, :body] + } + + config.filter_sensitive_data ('') do + ENV['APP_ID'] + end + config.filter_sensitive_data ('') do + ENV['APP_KEY'] + end +end + +# To add Capybara feature tests add `gem "minitest-rails-capybara"` +# to the test group in the Gemfile and uncomment the following: +# require "minitest/rails/capybara" + +# Uncomment for awesome colorful output +# require "minitest/pride" + +class ActiveSupport::TestCase + # Setup all fixtures in test/fixtures/*.yml for all tests in alphabetical order. + fixtures :all + # Add more helper methods to be used by all tests here... +end diff --git a/tmp/.keep b/tmp/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/tmp/cache/assets/sprockets/v3.0/-2/-2VHvJqvZxgQrMjr-NtSknSEl-1KQ09qrxaC62-NnNI.cache b/tmp/cache/assets/sprockets/v3.0/-2/-2VHvJqvZxgQrMjr-NtSknSEl-1KQ09qrxaC62-NnNI.cache new file mode 100644 index 000000000..dd5612825 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/-2/-2VHvJqvZxgQrMjr-NtSknSEl-1KQ09qrxaC62-NnNI.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/-5/-58MaEZ3ij290p1vdqejtSmJ_JWrMSSqjpeHxHa3G5A.cache b/tmp/cache/assets/sprockets/v3.0/-5/-58MaEZ3ij290p1vdqejtSmJ_JWrMSSqjpeHxHa3G5A.cache new file mode 100644 index 000000000..96929a1b5 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/-5/-58MaEZ3ij290p1vdqejtSmJ_JWrMSSqjpeHxHa3G5A.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/-I/-IgJZpOcODbODth-UAs4ZYgVR7KZBdqk4Fv1iyWrNbQ.cache b/tmp/cache/assets/sprockets/v3.0/-I/-IgJZpOcODbODth-UAs4ZYgVR7KZBdqk4Fv1iyWrNbQ.cache new file mode 100644 index 000000000..eb88155fc Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/-I/-IgJZpOcODbODth-UAs4ZYgVR7KZBdqk4Fv1iyWrNbQ.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/-I/-ion9pys0TbVQpRUdzlncZMXMB2eHlv2smfpbIdsm-U.cache b/tmp/cache/assets/sprockets/v3.0/-I/-ion9pys0TbVQpRUdzlncZMXMB2eHlv2smfpbIdsm-U.cache new file mode 100644 index 000000000..ed36d3c52 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/-I/-ion9pys0TbVQpRUdzlncZMXMB2eHlv2smfpbIdsm-U.cache @@ -0,0 +1 @@ +"%=,u›³âržä¼7q:æè~}LÝX«A“cø¤ \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/-K/-KUflT6ENqijyZ1QkqtaJpsUXqwmEPfpZjylbwGvoeI.cache b/tmp/cache/assets/sprockets/v3.0/-K/-KUflT6ENqijyZ1QkqtaJpsUXqwmEPfpZjylbwGvoeI.cache new file mode 100644 index 000000000..2913d42b9 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/-K/-KUflT6ENqijyZ1QkqtaJpsUXqwmEPfpZjylbwGvoeI.cache @@ -0,0 +1,2 @@ +[o:Set: +@hash}!I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"Zprocessors:type=application/javascript&file_type=application/javascript&pipeline=self;TTI"{file-digest:///Users/kjfitzpatrick/.rvm/gems/ruby-2.5.1/gems/bootstrap-4.1.3/assets/javascripts/bootstrap-sprockets.js;TTI"nfile-digest:///Users/kjfitzpatrick/.rvm/gems/ruby-2.5.1/gems/bootstrap-4.1.3/assets/javascripts/bootstrap;TTI"sfile-digest:///Users/kjfitzpatrick/.rvm/gems/ruby-2.5.1/gems/bootstrap-4.1.3/assets/javascripts/bootstrap/util;TTI"vfile-digest:///Users/kjfitzpatrick/.rvm/gems/ruby-2.5.1/gems/bootstrap-4.1.3/assets/javascripts/bootstrap/util.js;TTI"xfile-digest:///Users/kjfitzpatrick/.rvm/gems/ruby-2.5.1/gems/bootstrap-4.1.3/assets/javascripts/bootstrap/scrollspy;TTI"{file-digest:///Users/kjfitzpatrick/.rvm/gems/ruby-2.5.1/gems/bootstrap-4.1.3/assets/javascripts/bootstrap/scrollspy.js;TTI"wfile-digest:///Users/kjfitzpatrick/.rvm/gems/ruby-2.5.1/gems/bootstrap-4.1.3/assets/javascripts/bootstrap/collapse;TTI"zfile-digest:///Users/kjfitzpatrick/.rvm/gems/ruby-2.5.1/gems/bootstrap-4.1.3/assets/javascripts/bootstrap/collapse.js;TTI"tfile-digest:///Users/kjfitzpatrick/.rvm/gems/ruby-2.5.1/gems/bootstrap-4.1.3/assets/javascripts/bootstrap/alert;TTI"wfile-digest:///Users/kjfitzpatrick/.rvm/gems/ruby-2.5.1/gems/bootstrap-4.1.3/assets/javascripts/bootstrap/alert.js;TTI"vfile-digest:///Users/kjfitzpatrick/.rvm/gems/ruby-2.5.1/gems/bootstrap-4.1.3/assets/javascripts/bootstrap/tooltip;TTI"yfile-digest:///Users/kjfitzpatrick/.rvm/gems/ruby-2.5.1/gems/bootstrap-4.1.3/assets/javascripts/bootstrap/tooltip.js;TTI"vfile-digest:///Users/kjfitzpatrick/.rvm/gems/ruby-2.5.1/gems/bootstrap-4.1.3/assets/javascripts/bootstrap/popover;TTI"yfile-digest:///Users/kjfitzpatrick/.rvm/gems/ruby-2.5.1/gems/bootstrap-4.1.3/assets/javascripts/bootstrap/popover.js;TTI"wfile-digest:///Users/kjfitzpatrick/.rvm/gems/ruby-2.5.1/gems/bootstrap-4.1.3/assets/javascripts/bootstrap/dropdown;TTI"zfile-digest:///Users/kjfitzpatrick/.rvm/gems/ruby-2.5.1/gems/bootstrap-4.1.3/assets/javascripts/bootstrap/dropdown.js;TTI"ufile-digest:///Users/kjfitzpatrick/.rvm/gems/ruby-2.5.1/gems/bootstrap-4.1.3/assets/javascripts/bootstrap/button;TTI"xfile-digest:///Users/kjfitzpatrick/.rvm/gems/ruby-2.5.1/gems/bootstrap-4.1.3/assets/javascripts/bootstrap/button.js;TTI"tfile-digest:///Users/kjfitzpatrick/.rvm/gems/ruby-2.5.1/gems/bootstrap-4.1.3/assets/javascripts/bootstrap/modal;TTI"wfile-digest:///Users/kjfitzpatrick/.rvm/gems/ruby-2.5.1/gems/bootstrap-4.1.3/assets/javascripts/bootstrap/modal.js;TTI"wfile-digest:///Users/kjfitzpatrick/.rvm/gems/ruby-2.5.1/gems/bootstrap-4.1.3/assets/javascripts/bootstrap/carousel;TTI"zfile-digest:///Users/kjfitzpatrick/.rvm/gems/ruby-2.5.1/gems/bootstrap-4.1.3/assets/javascripts/bootstrap/carousel.js;TTI"rfile-digest:///Users/kjfitzpatrick/.rvm/gems/ruby-2.5.1/gems/bootstrap-4.1.3/assets/javascripts/bootstrap/tab;TTI"ufile-digest:///Users/kjfitzpatrick/.rvm/gems/ruby-2.5.1/gems/bootstrap-4.1.3/assets/javascripts/bootstrap/tab.js;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/-M/-M60-P117RcO9PxYhVImEtBH_iPv9LC0iXTgMTdb3m8.cache b/tmp/cache/assets/sprockets/v3.0/-M/-M60-P117RcO9PxYhVImEtBH_iPv9LC0iXTgMTdb3m8.cache new file mode 100644 index 000000000..440bb33cf Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/-M/-M60-P117RcO9PxYhVImEtBH_iPv9LC0iXTgMTdb3m8.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/-M/-MSbWdbRw_YdWE4KxxpiO_Xn5JG2D4KfHXsdA80B-uY.cache b/tmp/cache/assets/sprockets/v3.0/-M/-MSbWdbRw_YdWE4KxxpiO_Xn5JG2D4KfHXsdA80B-uY.cache new file mode 100644 index 000000000..448966eaa --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/-M/-MSbWdbRw_YdWE4KxxpiO_Xn5JG2D4KfHXsdA80B-uY.cache @@ -0,0 +1,4 @@ +{:uriI"file://app/assets/images/Death_to_Stock_Fall_Dinner_5.jpg?type=image/jpeg&id=445ffaebf246fd8ac09f6317e4196bd323fa83a0828f3880b1c5f2ad01437d31:ET:load_pathI"app/assets/images;T: filenameI"7app/assets/images/Death_to_Stock_Fall_Dinner_5.jpg;T: nameI"!Death_to_Stock_Fall_Dinner_5;T:logical_pathI"%Death_to_Stock_Fall_Dinner_5.jpg;T:content_typeI"image/jpeg;T: source0: metadata{: digest"%&UáÔ[i—U`›] ³M¼ á„ B\'#óm\fÏè: lengthiØ:dependencieso:Set: +@hash} +I"environment-version;TTI"environment-paths;TTI"rails-env;TTI"4processors:type=image/jpeg&file_type=image/jpeg;TTI"Efile-digest://app/assets/images/Death_to_Stock_Fall_Dinner_5.jpg;TTF:dependencies_digest"%-VExÝÔ˜mÑáŒ>Ç¿J  ¬uœ7y:idI"E445ffaebf246fd8ac09f6317e4196bd323fa83a0828f3880b1c5f2ad01437d31;F: +mtimel+¦+Z \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/-O/-OgJHr7jyYwckGhVK_2reHaaGAU1c0-BHGgCk9Ej-do.cache b/tmp/cache/assets/sprockets/v3.0/-O/-OgJHr7jyYwckGhVK_2reHaaGAU1c0-BHGgCk9Ej-do.cache new file mode 100644 index 000000000..4585f5950 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/-O/-OgJHr7jyYwckGhVK_2reHaaGAU1c0-BHGgCk9Ej-do.cache @@ -0,0 +1,2 @@ +"%úCCõ8Õ±ŒüZüw* +žØ. —A^ÅÕÚ¿ƒ5ÏÔ \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/-S/-S_DxuZYvvVLimVkBauAhKWp7c_72ZpdXg3h_VuaKhY.cache b/tmp/cache/assets/sprockets/v3.0/-S/-S_DxuZYvvVLimVkBauAhKWp7c_72ZpdXg3h_VuaKhY.cache new file mode 100644 index 000000000..7819ee1e7 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/-S/-S_DxuZYvvVLimVkBauAhKWp7c_72ZpdXg3h_VuaKhY.cache @@ -0,0 +1 @@ +I"Ñ/Users/kjfitzpatrick/.rvm/gems/ruby-2.5.1/gems/bootstrap-4.1.3/assets/javascripts/bootstrap/util.js?type=application/javascript&pipeline=self&id=c8736c962ad5a4890c182efd21c7670599051468b2878d28adc95c258ceb117c:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/-S/-SarrvcJnskCwtCfZBOC9-JriXJ8bvcFw62NhM7kE4I.cache b/tmp/cache/assets/sprockets/v3.0/-S/-SarrvcJnskCwtCfZBOC9-JriXJ8bvcFw62NhM7kE4I.cache new file mode 100644 index 000000000..440bb33cf Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/-S/-SarrvcJnskCwtCfZBOC9-JriXJ8bvcFw62NhM7kE4I.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/-S/-ssJrQ-SzclvZhGvbE0A1IfyXwHrv5el1RXESyitJyI.cache b/tmp/cache/assets/sprockets/v3.0/-S/-ssJrQ-SzclvZhGvbE0A1IfyXwHrv5el1RXESyitJyI.cache new file mode 100644 index 000000000..440bb33cf Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/-S/-ssJrQ-SzclvZhGvbE0A1IfyXwHrv5el1RXESyitJyI.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/-_/-_eEnCDGGHPm2DD2bt9XXEgRz_8KvuzG2uflTC507J8.cache b/tmp/cache/assets/sprockets/v3.0/-_/-_eEnCDGGHPm2DD2bt9XXEgRz_8KvuzG2uflTC507J8.cache new file mode 100644 index 000000000..675557a4e --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/-_/-_eEnCDGGHPm2DD2bt9XXEgRz_8KvuzG2uflTC507J8.cache @@ -0,0 +1 @@ +I"‡app/assets/stylesheets/application.scss?type=text/css&pipeline=self&id=1a384be305638eb2fd23e8f2962c5178bd1e7445273323b89c36a2a520f836f3:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/-n/-nM02I3YfoynwaTkFkpLFAxIsPp2SHH8pEgIEIhbNUE.cache b/tmp/cache/assets/sprockets/v3.0/-n/-nM02I3YfoynwaTkFkpLFAxIsPp2SHH8pEgIEIhbNUE.cache new file mode 100644 index 000000000..164cffc7e Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/-n/-nM02I3YfoynwaTkFkpLFAxIsPp2SHH8pEgIEIhbNUE.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/-p/-pZwUb6GUaPzCDwCon2WfWzQZuZaebLCyqKP2QtcYR8.cache b/tmp/cache/assets/sprockets/v3.0/-p/-pZwUb6GUaPzCDwCon2WfWzQZuZaebLCyqKP2QtcYR8.cache new file mode 100644 index 000000000..84a31836a Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/-p/-pZwUb6GUaPzCDwCon2WfWzQZuZaebLCyqKP2QtcYR8.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/-q/-quWzHvomamNVcexyrc8ED746PxL0jffyMDBCYvIFPU.cache b/tmp/cache/assets/sprockets/v3.0/-q/-quWzHvomamNVcexyrc8ED746PxL0jffyMDBCYvIFPU.cache new file mode 100644 index 000000000..dbcbaf190 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/-q/-quWzHvomamNVcexyrc8ED746PxL0jffyMDBCYvIFPU.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/-z/-z6BXe9evS2biwPS4ANr2oWHboKDX4MAf39nCm1_bIg.cache b/tmp/cache/assets/sprockets/v3.0/-z/-z6BXe9evS2biwPS4ANr2oWHboKDX4MAf39nCm1_bIg.cache new file mode 100644 index 000000000..26d0e9bd4 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/-z/-z6BXe9evS2biwPS4ANr2oWHboKDX4MAf39nCm1_bIg.cache @@ -0,0 +1 @@ +I"‡app/assets/stylesheets/application.scss?type=text/css&pipeline=self&id=805a0e3fe9b60bdfa3d290cfa4dba5691e2f1d8672504379bce384406f4c1b1b:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/0-/0-qUzhpN3h80XBFhTX_WFPsTGUNiLED6vgurgp_v7dc.cache b/tmp/cache/assets/sprockets/v3.0/0-/0-qUzhpN3h80XBFhTX_WFPsTGUNiLED6vgurgp_v7dc.cache new file mode 100644 index 000000000..7e489d0b4 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/0-/0-qUzhpN3h80XBFhTX_WFPsTGUNiLED6vgurgp_v7dc.cache @@ -0,0 +1 @@ +"%Üfh¬,zctZ"¯W âˆwhê®p9¬õ˜’„ƒ \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/05/05FxcS8mnzx1ekiH1yC3UBfx4omeTSfmExSCX_oysPQ.cache b/tmp/cache/assets/sprockets/v3.0/05/05FxcS8mnzx1ekiH1yC3UBfx4omeTSfmExSCX_oysPQ.cache new file mode 100644 index 000000000..c83361e38 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/05/05FxcS8mnzx1ekiH1yC3UBfx4omeTSfmExSCX_oysPQ.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/0E/0EkdiPzQiQarcl6bypP8QfkacGGP8qVx-gSS_ATMC2Q.cache b/tmp/cache/assets/sprockets/v3.0/0E/0EkdiPzQiQarcl6bypP8QfkacGGP8qVx-gSS_ATMC2Q.cache new file mode 100644 index 000000000..910d170c5 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/0E/0EkdiPzQiQarcl6bypP8QfkacGGP8qVx-gSS_ATMC2Q.cache @@ -0,0 +1,2 @@ +"%· +PW~'æ%áùõزæºZmxôáêqñ©œ ·åc³… \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/0F/0F0mWQ25zQnlB9dPJGDhui2ymTyITAHanQc5eutPM3s.cache b/tmp/cache/assets/sprockets/v3.0/0F/0F0mWQ25zQnlB9dPJGDhui2ymTyITAHanQc5eutPM3s.cache new file mode 100644 index 000000000..e848b5582 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/0F/0F0mWQ25zQnlB9dPJGDhui2ymTyITAHanQc5eutPM3s.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/0J/0J3dtkNIolM8dhKteVUmRVMYueE3axSDi8Hxdpi2gJc.cache b/tmp/cache/assets/sprockets/v3.0/0J/0J3dtkNIolM8dhKteVUmRVMYueE3axSDi8Hxdpi2gJc.cache new file mode 100644 index 000000000..ccb564bc6 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/0J/0J3dtkNIolM8dhKteVUmRVMYueE3axSDi8Hxdpi2gJc.cache @@ -0,0 +1 @@ +"%zÈWæÔ?¶óñ~¬‚èI’©„±>Ä›C'Ù \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/0a/0altzJ39yU86IXW02DTEWEwADrAGebNSa4gLnmjMlIE.cache b/tmp/cache/assets/sprockets/v3.0/0a/0altzJ39yU86IXW02DTEWEwADrAGebNSa4gLnmjMlIE.cache new file mode 100644 index 000000000..60199bd58 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/0a/0altzJ39yU86IXW02DTEWEwADrAGebNSa4gLnmjMlIE.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/0c/0cBSzUJ9Yv68f0BBWh0kLP2zS1YDDvLYQQ0fgX1Kwmo.cache b/tmp/cache/assets/sprockets/v3.0/0c/0cBSzUJ9Yv68f0BBWh0kLP2zS1YDDvLYQQ0fgX1Kwmo.cache new file mode 100644 index 000000000..861b3b36f Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/0c/0cBSzUJ9Yv68f0BBWh0kLP2zS1YDDvLYQQ0fgX1Kwmo.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/0c/0comXMnJLZ7mSWRfQ9F_PnOWkALFEYfAN8RyWjeGn-0.cache b/tmp/cache/assets/sprockets/v3.0/0c/0comXMnJLZ7mSWRfQ9F_PnOWkALFEYfAN8RyWjeGn-0.cache new file mode 100644 index 000000000..ef3a74a9e --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/0c/0comXMnJLZ7mSWRfQ9F_PnOWkALFEYfAN8RyWjeGn-0.cache @@ -0,0 +1 @@ +I"ˆapp/assets/stylesheets/application.scss?type=text/css&pipeline=debug&id=c64c788933c8c3f78452144857693268da19c9ad3a5b1fb8c0512d50e5cf1ca4:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/0l/0lZoof2eWpvyHiu1SoiS0DOJKdpG06sD_h6Pcs_00ZQ.cache b/tmp/cache/assets/sprockets/v3.0/0l/0lZoof2eWpvyHiu1SoiS0DOJKdpG06sD_h6Pcs_00ZQ.cache new file mode 100644 index 000000000..c533b3f33 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/0l/0lZoof2eWpvyHiu1SoiS0DOJKdpG06sD_h6Pcs_00ZQ.cache @@ -0,0 +1 @@ +I"‡app/assets/stylesheets/application.scss?type=text/css&pipeline=self&id=84af5d363fb8df371233cf13111de9f43b8040d9691e12ff656bc30105e2174a:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/0p/0pIn8WFq4nY8lVPgmkCk5FLxtMxRq6yQvvpCW0_PDbg.cache b/tmp/cache/assets/sprockets/v3.0/0p/0pIn8WFq4nY8lVPgmkCk5FLxtMxRq6yQvvpCW0_PDbg.cache new file mode 100644 index 000000000..2a7c8b5f6 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/0p/0pIn8WFq4nY8lVPgmkCk5FLxtMxRq6yQvvpCW0_PDbg.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/0u/0ugCsYnRW_vboYiY4uri-9HshPl9e9GNURhQhsNjuYY.cache b/tmp/cache/assets/sprockets/v3.0/0u/0ugCsYnRW_vboYiY4uri-9HshPl9e9GNURhQhsNjuYY.cache new file mode 100644 index 000000000..87002e829 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/0u/0ugCsYnRW_vboYiY4uri-9HshPl9e9GNURhQhsNjuYY.cache @@ -0,0 +1 @@ +"%„q¼ÄâºËuBï¿\ì¦ "ó,ÝHΨ9ÁXã$ \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/0y/0yzXMcDyCXSmChZ-zOmbD9RzBNWhz28SipT3h4Ltcek.cache b/tmp/cache/assets/sprockets/v3.0/0y/0yzXMcDyCXSmChZ-zOmbD9RzBNWhz28SipT3h4Ltcek.cache new file mode 100644 index 000000000..36e5bdbba Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/0y/0yzXMcDyCXSmChZ-zOmbD9RzBNWhz28SipT3h4Ltcek.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/0z/0zs2uqYYFSscdUXLvTpHu4Gai9bjsh9HpgZAY1PhIWw.cache b/tmp/cache/assets/sprockets/v3.0/0z/0zs2uqYYFSscdUXLvTpHu4Gai9bjsh9HpgZAY1PhIWw.cache new file mode 100644 index 000000000..a57a43201 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/0z/0zs2uqYYFSscdUXLvTpHu4Gai9bjsh9HpgZAY1PhIWw.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/10/10HstUzxa0PgygA_XAzlkR_vCVeeLcsdy_E7ZPLax8A.cache b/tmp/cache/assets/sprockets/v3.0/10/10HstUzxa0PgygA_XAzlkR_vCVeeLcsdy_E7ZPLax8A.cache new file mode 100644 index 000000000..085cde698 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/10/10HstUzxa0PgygA_XAzlkR_vCVeeLcsdy_E7ZPLax8A.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/15/155dnsr5SyuJHOTTEacN-0U657VdA-RD9HSK1Oguhwk.cache b/tmp/cache/assets/sprockets/v3.0/15/155dnsr5SyuJHOTTEacN-0U657VdA-RD9HSK1Oguhwk.cache new file mode 100644 index 000000000..ca96666f4 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/15/155dnsr5SyuJHOTTEacN-0U657VdA-RD9HSK1Oguhwk.cache @@ -0,0 +1 @@ +I"ˆapp/assets/stylesheets/application.scss?type=text/css&pipeline=debug&id=0a076e4ac9c1e5e41f51928e6c737130a656138383f596980cdbbf3be41b448f:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/18/18aTd_D8j4zFnH_ZxwrLVX3f-1F_mu3pK7-W7nQjsY0.cache b/tmp/cache/assets/sprockets/v3.0/18/18aTd_D8j4zFnH_ZxwrLVX3f-1F_mu3pK7-W7nQjsY0.cache new file mode 100644 index 000000000..322dc0fda --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/18/18aTd_D8j4zFnH_ZxwrLVX3f-1F_mu3pK7-W7nQjsY0.cache @@ -0,0 +1 @@ +I"ˆapp/assets/stylesheets/application.scss?type=text/css&pipeline=debug&id=2f909a91559a87d25357a533a6f54e7908330d19126d053fbb3677955b163d93:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/19/19Y2soFXVsSsHSQs34PYRUdU_42s9mY9mLw1tIcwy8Q.cache b/tmp/cache/assets/sprockets/v3.0/19/19Y2soFXVsSsHSQs34PYRUdU_42s9mY9mLw1tIcwy8Q.cache new file mode 100644 index 000000000..3081cb732 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/19/19Y2soFXVsSsHSQs34PYRUdU_42s9mY9mLw1tIcwy8Q.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/1G/1GJ2Lm9tbc0PwyKZKuLIXtJ_gokjQdIw9HdyYqtYCTQ.cache b/tmp/cache/assets/sprockets/v3.0/1G/1GJ2Lm9tbc0PwyKZKuLIXtJ_gokjQdIw9HdyYqtYCTQ.cache new file mode 100644 index 000000000..8bb6aa0be --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/1G/1GJ2Lm9tbc0PwyKZKuLIXtJ_gokjQdIw9HdyYqtYCTQ.cache @@ -0,0 +1 @@ +I"‡app/assets/stylesheets/application.scss?type=text/css&pipeline=self&id=fb3796ed5fbc8bd97b801dda1f1f628bcc40417106be5b605d37fabf6f649db2:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/1S/1SpSgD8RRZqbvX2nxg9VVEp69wrVrH0SSfAUzgI2QUo.cache b/tmp/cache/assets/sprockets/v3.0/1S/1SpSgD8RRZqbvX2nxg9VVEp69wrVrH0SSfAUzgI2QUo.cache new file mode 100644 index 000000000..533f7737c --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/1S/1SpSgD8RRZqbvX2nxg9VVEp69wrVrH0SSfAUzgI2QUo.cache @@ -0,0 +1 @@ +I"‡app/assets/stylesheets/application.scss?type=text/css&pipeline=self&id=9b8844809eaf089b6d5b1e30650ac4bf4be98b768b87452d875dcf4ed8aa7707:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/1V/1VAtuaCOnS1LODTr1hyX4P1L6Rf8XzqQKDzoFplZEOQ.cache b/tmp/cache/assets/sprockets/v3.0/1V/1VAtuaCOnS1LODTr1hyX4P1L6Rf8XzqQKDzoFplZEOQ.cache new file mode 100644 index 000000000..1b6320dc1 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/1V/1VAtuaCOnS1LODTr1hyX4P1L6Rf8XzqQKDzoFplZEOQ.cache @@ -0,0 +1 @@ +"%¯à; œã›V%ûq~ƒPyÕdËôaT[·ÞÊóÒ:œ] \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/1W/1WOb2omi30_frWI_eozt0_fcqha1JBKqAaf4cp8e8M0.cache b/tmp/cache/assets/sprockets/v3.0/1W/1WOb2omi30_frWI_eozt0_fcqha1JBKqAaf4cp8e8M0.cache new file mode 100644 index 000000000..440bb33cf Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/1W/1WOb2omi30_frWI_eozt0_fcqha1JBKqAaf4cp8e8M0.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/1Z/1ZHDQxVYrHR4q7GlFhDAZyTu2vBybE_8MF0vgztF0YQ.cache b/tmp/cache/assets/sprockets/v3.0/1Z/1ZHDQxVYrHR4q7GlFhDAZyTu2vBybE_8MF0vgztF0YQ.cache new file mode 100644 index 000000000..080c2a89a --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/1Z/1ZHDQxVYrHR4q7GlFhDAZyTu2vBybE_8MF0vgztF0YQ.cache @@ -0,0 +1 @@ +"%vŽl~wд2ë:k×3¯!¹¢=?xW jÝK4øýúIÎ \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/1b/1BDTTX4tkUpqlXKBpxYJl-SJpyxsqy95BdY5hViWN_o.cache b/tmp/cache/assets/sprockets/v3.0/1b/1BDTTX4tkUpqlXKBpxYJl-SJpyxsqy95BdY5hViWN_o.cache new file mode 100644 index 000000000..ea7b6dfd7 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/1b/1BDTTX4tkUpqlXKBpxYJl-SJpyxsqy95BdY5hViWN_o.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/1b/1bCaVo9SfEoGi-o6QjNFR56DAzm5mVj4AAKaaDgHY4I.cache b/tmp/cache/assets/sprockets/v3.0/1b/1bCaVo9SfEoGi-o6QjNFR56DAzm5mVj4AAKaaDgHY4I.cache new file mode 100644 index 000000000..a4a3fb5f4 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/1b/1bCaVo9SfEoGi-o6QjNFR56DAzm5mVj4AAKaaDgHY4I.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/1f/1fKEzo98-0r4ZwEXhhbialWqOWb3inJmdBleRXu745M.cache b/tmp/cache/assets/sprockets/v3.0/1f/1fKEzo98-0r4ZwEXhhbialWqOWb3inJmdBleRXu745M.cache new file mode 100644 index 000000000..900356c88 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/1f/1fKEzo98-0r4ZwEXhhbialWqOWb3inJmdBleRXu745M.cache @@ -0,0 +1,3 @@ +[o:Set: +@hash} +I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"Zprocessors:type=application/javascript&file_type=application/javascript&pipeline=self;TTI"vfile-digest:///Users/kjfitzpatrick/.rvm/gems/ruby-2.5.1/gems/bootstrap-4.1.3/assets/javascripts/bootstrap/util.js;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/1r/1r8PBvbWsHhRWyj6FwuAWxLzcAKfdtO9PW_rNIu_zic.cache b/tmp/cache/assets/sprockets/v3.0/1r/1r8PBvbWsHhRWyj6FwuAWxLzcAKfdtO9PW_rNIu_zic.cache new file mode 100644 index 000000000..be76cb619 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/1r/1r8PBvbWsHhRWyj6FwuAWxLzcAKfdtO9PW_rNIu_zic.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/25/25HzMbWrhaeKCPkIFXOhwa_LqDacky0iaG2QfT5oXBg.cache b/tmp/cache/assets/sprockets/v3.0/25/25HzMbWrhaeKCPkIFXOhwa_LqDacky0iaG2QfT5oXBg.cache new file mode 100644 index 000000000..517b8095d Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/25/25HzMbWrhaeKCPkIFXOhwa_LqDacky0iaG2QfT5oXBg.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/25/25oc7fjHiRdaO-pZalADApdHf9vbZQFjhML3IjpTMKw.cache b/tmp/cache/assets/sprockets/v3.0/25/25oc7fjHiRdaO-pZalADApdHf9vbZQFjhML3IjpTMKw.cache new file mode 100644 index 000000000..c41eee0bd --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/25/25oc7fjHiRdaO-pZalADApdHf9vbZQFjhML3IjpTMKw.cache @@ -0,0 +1 @@ +"%PÜh’&Ÿ?X*qÔŒµjžÕ5쯖-â&þ¯îá \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/28/28KSMbRzpLyYuQLhaTJ_15dVP1F9rUVQiid1DUX4_i8.cache b/tmp/cache/assets/sprockets/v3.0/28/28KSMbRzpLyYuQLhaTJ_15dVP1F9rUVQiid1DUX4_i8.cache new file mode 100644 index 000000000..c83361e38 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/28/28KSMbRzpLyYuQLhaTJ_15dVP1F9rUVQiid1DUX4_i8.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/2A/2AZS73zlAZH1XAnLifbaOcUoM8T3u5jL8Y0BTZ3yVo8.cache b/tmp/cache/assets/sprockets/v3.0/2A/2AZS73zlAZH1XAnLifbaOcUoM8T3u5jL8Y0BTZ3yVo8.cache new file mode 100644 index 000000000..3dff85005 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/2A/2AZS73zlAZH1XAnLifbaOcUoM8T3u5jL8Y0BTZ3yVo8.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/2A/2a1BPGsBiH4iA6ySFxwZ1w51PGm9jOYTOZIso-p6LfI.cache b/tmp/cache/assets/sprockets/v3.0/2A/2a1BPGsBiH4iA6ySFxwZ1w51PGm9jOYTOZIso-p6LfI.cache new file mode 100644 index 000000000..dcb1b6a3a Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/2A/2a1BPGsBiH4iA6ySFxwZ1w51PGm9jOYTOZIso-p6LfI.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/2G/2G2nRojtN0TX-cUkD-jBZSajULcQqBRoFSnGsuEDLJE.cache b/tmp/cache/assets/sprockets/v3.0/2G/2G2nRojtN0TX-cUkD-jBZSajULcQqBRoFSnGsuEDLJE.cache new file mode 100644 index 000000000..06dfcf7c6 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/2G/2G2nRojtN0TX-cUkD-jBZSajULcQqBRoFSnGsuEDLJE.cache @@ -0,0 +1 @@ +"%ÝQ; ®,D®D¬ë¢‘öokÌÄóN-ð±Mzÿ \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/2N/2NBb0Rx7lj8N_zfk_vOPEC92ghUqS0h1mxbQ-s43Tjw.cache b/tmp/cache/assets/sprockets/v3.0/2N/2NBb0Rx7lj8N_zfk_vOPEC92ghUqS0h1mxbQ-s43Tjw.cache new file mode 100644 index 000000000..156db1eea --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/2N/2NBb0Rx7lj8N_zfk_vOPEC92ghUqS0h1mxbQ-s43Tjw.cache @@ -0,0 +1 @@ +"%ªô"ïHœr!ÉÕ› €÷‰I}CÎ[ìÄ`tNê  fn \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/2U/2UGTVTGUSn8CmtGxIG2ETKS-NOEZwKFnm0Tti2Hva24.cache b/tmp/cache/assets/sprockets/v3.0/2U/2UGTVTGUSn8CmtGxIG2ETKS-NOEZwKFnm0Tti2Hva24.cache new file mode 100644 index 000000000..e50a717ba --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/2U/2UGTVTGUSn8CmtGxIG2ETKS-NOEZwKFnm0Tti2Hva24.cache @@ -0,0 +1 @@ +"%£âû/fñÁ^íNÕö9ÿE8±Ø4²wȆ"þ \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/2V/2V4AKpAZar1Bts6AS6psVWgiQx9Ma68o3yLPbCvz0j0.cache b/tmp/cache/assets/sprockets/v3.0/2V/2V4AKpAZar1Bts6AS6psVWgiQx9Ma68o3yLPbCvz0j0.cache new file mode 100644 index 000000000..d706e4975 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/2V/2V4AKpAZar1Bts6AS6psVWgiQx9Ma68o3yLPbCvz0j0.cache @@ -0,0 +1 @@ +I"ˆapp/assets/stylesheets/application.scss?type=text/css&pipeline=debug&id=5f2729d96aeb07eae3512c4952bd2901487c90a0698e0130426eef4d5935320a:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/2W/2W-WWlEguUjypXyj6VvPbKGeTMj0T9WVgSD6eb9JVIM.cache b/tmp/cache/assets/sprockets/v3.0/2W/2W-WWlEguUjypXyj6VvPbKGeTMj0T9WVgSD6eb9JVIM.cache new file mode 100644 index 000000000..3081cb732 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/2W/2W-WWlEguUjypXyj6VvPbKGeTMj0T9WVgSD6eb9JVIM.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/2Z/2ZChYGrF8HrCUhTCJn7eSI2GAivSQTTD8R2JtaZZBoc.cache b/tmp/cache/assets/sprockets/v3.0/2Z/2ZChYGrF8HrCUhTCJn7eSI2GAivSQTTD8R2JtaZZBoc.cache new file mode 100644 index 000000000..91cbe31ea Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/2Z/2ZChYGrF8HrCUhTCJn7eSI2GAivSQTTD8R2JtaZZBoc.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/2b/2bZs6tEOc-ASrfEsticWB_dIPjSBXIlZSZXUvht9UqY.cache b/tmp/cache/assets/sprockets/v3.0/2b/2bZs6tEOc-ASrfEsticWB_dIPjSBXIlZSZXUvht9UqY.cache new file mode 100644 index 000000000..e5eda7360 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/2b/2bZs6tEOc-ASrfEsticWB_dIPjSBXIlZSZXUvht9UqY.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/2c/2cLG8g-CZKKIzav7SMbE9Ha46KeOwenm6CI3bGzp_bU.cache b/tmp/cache/assets/sprockets/v3.0/2c/2cLG8g-CZKKIzav7SMbE9Ha46KeOwenm6CI3bGzp_bU.cache new file mode 100644 index 000000000..3b7d76c6c --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/2c/2cLG8g-CZKKIzav7SMbE9Ha46KeOwenm6CI3bGzp_bU.cache @@ -0,0 +1 @@ +I"‡app/assets/stylesheets/application.scss?type=text/css&pipeline=self&id=f8aefcb5e3b12a4c6cbe33323c63e23a451053d5090db46cb8ea2d64f47b33a5:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/2o/2om-Oa4PyCaPjuV3FWS3ta0p2WcswX8ANOrPoULVKI8.cache b/tmp/cache/assets/sprockets/v3.0/2o/2om-Oa4PyCaPjuV3FWS3ta0p2WcswX8ANOrPoULVKI8.cache new file mode 100644 index 000000000..b2d1627ac --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/2o/2om-Oa4PyCaPjuV3FWS3ta0p2WcswX8ANOrPoULVKI8.cache @@ -0,0 +1 @@ +"%œ@Ù8›{'ã$˰ÌD%ñ]}òÐÓFKœ:"c/È \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/2s/2srqqi30bmGM0uGv9iC2Pi1e3QHxDQZKgRyELovlB2Q.cache b/tmp/cache/assets/sprockets/v3.0/2s/2srqqi30bmGM0uGv9iC2Pi1e3QHxDQZKgRyELovlB2Q.cache new file mode 100644 index 000000000..e70eeb49f --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/2s/2srqqi30bmGM0uGv9iC2Pi1e3QHxDQZKgRyELovlB2Q.cache @@ -0,0 +1 @@ +I"“app/assets/javascripts/application.js?type=application/javascript&pipeline=self&id=558d9d0578397f36445fc624df0f1e69d1a057a2ac8d53c99c797e02b0f513d7:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/2x/2XT1TrlHUR9fJG0_IhfJ4L6Gw25D3saF63KvCyDyUsc.cache b/tmp/cache/assets/sprockets/v3.0/2x/2XT1TrlHUR9fJG0_IhfJ4L6Gw25D3saF63KvCyDyUsc.cache new file mode 100644 index 000000000..c6f928b20 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/2x/2XT1TrlHUR9fJG0_IhfJ4L6Gw25D3saF63KvCyDyUsc.cache @@ -0,0 +1 @@ +"%ÙŒ)–e9la4âÇP±˜´£ãd«„ˉi׳Ã;  \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/2x/2xkAhOC9I3E6ll4YrLGtLTUTPHVSsKOmcjwv-4WjRdw.cache b/tmp/cache/assets/sprockets/v3.0/2x/2xkAhOC9I3E6ll4YrLGtLTUTPHVSsKOmcjwv-4WjRdw.cache new file mode 100644 index 000000000..228c523bc --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/2x/2xkAhOC9I3E6ll4YrLGtLTUTPHVSsKOmcjwv-4WjRdw.cache @@ -0,0 +1 @@ +I"Ô/Users/kjfitzpatrick/.rvm/gems/ruby-2.5.1/gems/bootstrap-4.1.3/assets/javascripts/bootstrap/popover.js?type=application/javascript&pipeline=self&id=50afee5c0fde8b0e590da256eb632823fc8bd91d03175498f69fcd14e7f19643:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/38/38-8nC8TAhpz-HZ4yPuDdQQS6gpW8mDdbtcPAh50WuQ.cache b/tmp/cache/assets/sprockets/v3.0/38/38-8nC8TAhpz-HZ4yPuDdQQS6gpW8mDdbtcPAh50WuQ.cache new file mode 100644 index 000000000..3081cb732 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/38/38-8nC8TAhpz-HZ4yPuDdQQS6gpW8mDdbtcPAh50WuQ.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/39/39bFl0DBcpYkVh2kd1VcqAhfip41HrDhZpHvo3volYQ.cache b/tmp/cache/assets/sprockets/v3.0/39/39bFl0DBcpYkVh2kd1VcqAhfip41HrDhZpHvo3volYQ.cache new file mode 100644 index 000000000..e2817d084 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/39/39bFl0DBcpYkVh2kd1VcqAhfip41HrDhZpHvo3volYQ.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/3F/3Ft92sOSl4zcpqJsuadRYHVts6tbM6SDUPgCjqfdVxg.cache b/tmp/cache/assets/sprockets/v3.0/3F/3Ft92sOSl4zcpqJsuadRYHVts6tbM6SDUPgCjqfdVxg.cache new file mode 100644 index 000000000..9a76a0d9c Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/3F/3Ft92sOSl4zcpqJsuadRYHVts6tbM6SDUPgCjqfdVxg.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/3M/3MOZR8yEPTwKWJBA-RCD0hWW08UHR9vxpHVH_axych4.cache b/tmp/cache/assets/sprockets/v3.0/3M/3MOZR8yEPTwKWJBA-RCD0hWW08UHR9vxpHVH_axych4.cache new file mode 100644 index 000000000..9b14d0536 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/3M/3MOZR8yEPTwKWJBA-RCD0hWW08UHR9vxpHVH_axych4.cache @@ -0,0 +1 @@ +I"ˆapp/assets/stylesheets/application.scss?type=text/css&pipeline=debug&id=6567772bcd62e7bdda91e37aad20846091595ffd89ac494005a16ee2ba7b7bee:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/3Q/3QNw6Jwu19WXYSTv1cbVp1PInsF75s2eBpQ5qfz77j0.cache b/tmp/cache/assets/sprockets/v3.0/3Q/3QNw6Jwu19WXYSTv1cbVp1PInsF75s2eBpQ5qfz77j0.cache new file mode 100644 index 000000000..672c9ff2c --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/3Q/3QNw6Jwu19WXYSTv1cbVp1PInsF75s2eBpQ5qfz77j0.cache @@ -0,0 +1 @@ +"%Ú3cÏ9GHߌg Ï) ©ÅóŸ’ÍðÔ¤-›_s \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/3c/3c2HYK98gY486ASsJzqFJgh3D2ikDdsVY3RL8jHtV4Y.cache b/tmp/cache/assets/sprockets/v3.0/3c/3c2HYK98gY486ASsJzqFJgh3D2ikDdsVY3RL8jHtV4Y.cache new file mode 100644 index 000000000..6149a7a08 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/3c/3c2HYK98gY486ASsJzqFJgh3D2ikDdsVY3RL8jHtV4Y.cache @@ -0,0 +1 @@ +I"‡app/assets/stylesheets/application.scss?type=text/css&pipeline=self&id=1d0af757d3819cba75c27f505af2da5f9c9de8ff9880876b11be7e6d0e7afb78:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/3g/3gZTW9gtuhONP1-CMWQQPebulI6D0H5a_4aJXDMm6Ao.cache b/tmp/cache/assets/sprockets/v3.0/3g/3gZTW9gtuhONP1-CMWQQPebulI6D0H5a_4aJXDMm6Ao.cache new file mode 100644 index 000000000..aaf868d9f --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/3g/3gZTW9gtuhONP1-CMWQQPebulI6D0H5a_4aJXDMm6Ao.cache @@ -0,0 +1 @@ +I"ˆapp/assets/stylesheets/application.scss?type=text/css&pipeline=debug&id=1b35e497ca6d77c917001fd95a29014e8c53bb74f1da2b87a103894276007fab:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/3j/3jHIIGkIKTHhO5ZagTYx5qihYVchqTMs-xTh8--26dw.cache b/tmp/cache/assets/sprockets/v3.0/3j/3jHIIGkIKTHhO5ZagTYx5qihYVchqTMs-xTh8--26dw.cache new file mode 100644 index 000000000..3faf194b2 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/3j/3jHIIGkIKTHhO5ZagTYx5qihYVchqTMs-xTh8--26dw.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/3u/3uHkTXD-kRQTLBybOVZjc0E99GY3d-K1qo_CrECIsnQ.cache b/tmp/cache/assets/sprockets/v3.0/3u/3uHkTXD-kRQTLBybOVZjc0E99GY3d-K1qo_CrECIsnQ.cache new file mode 100644 index 000000000..ef929f5ce --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/3u/3uHkTXD-kRQTLBybOVZjc0E99GY3d-K1qo_CrECIsnQ.cache @@ -0,0 +1 @@ +"%M‡ïk™ï7¿©¤ËåÍ }|ƒ«Íú•gè ÚG \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/3x/3xCHTOGM5OcE54FomAqN-pEhcOQBnTb5R7VAdbU7aW8.cache b/tmp/cache/assets/sprockets/v3.0/3x/3xCHTOGM5OcE54FomAqN-pEhcOQBnTb5R7VAdbU7aW8.cache new file mode 100644 index 000000000..3081cb732 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/3x/3xCHTOGM5OcE54FomAqN-pEhcOQBnTb5R7VAdbU7aW8.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/47/475XZUYoI9FEvIZdKespCENktNhbH0Yidx78idDBRb8.cache b/tmp/cache/assets/sprockets/v3.0/47/475XZUYoI9FEvIZdKespCENktNhbH0Yidx78idDBRb8.cache new file mode 100644 index 000000000..302ca4df2 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/47/475XZUYoI9FEvIZdKespCENktNhbH0Yidx78idDBRb8.cache @@ -0,0 +1,2 @@ +"%ÄÒšÁ]Lø[Á)‹Ø¦j—œ>…®ñ8% +<÷ðHð \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/4V/4VJY_jPI_dgcrQelmsf5Sd4QaYJaI2auoVSL5O5g5Zk.cache b/tmp/cache/assets/sprockets/v3.0/4V/4VJY_jPI_dgcrQelmsf5Sd4QaYJaI2auoVSL5O5g5Zk.cache new file mode 100644 index 000000000..159409661 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/4V/4VJY_jPI_dgcrQelmsf5Sd4QaYJaI2auoVSL5O5g5Zk.cache @@ -0,0 +1 @@ +I"ˆapp/assets/stylesheets/application.scss?type=text/css&pipeline=debug&id=1932b21d982666a5e9529919e34af30c584f8aa3b8ffdd6844dc2e05bd3cc4e5:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/4e/4E2IoJvVmjxNsR9iLWBpg2JhHzIqIQ-iV_o5QH0tu78.cache b/tmp/cache/assets/sprockets/v3.0/4e/4E2IoJvVmjxNsR9iLWBpg2JhHzIqIQ-iV_o5QH0tu78.cache new file mode 100644 index 000000000..1412aa2f5 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/4e/4E2IoJvVmjxNsR9iLWBpg2JhHzIqIQ-iV_o5QH0tu78.cache @@ -0,0 +1 @@ +I"Ø/Users/kjfitzpatrick/.rvm/gems/ruby-2.5.1/gems/activestorage-5.2.1/app/assets/javascripts/activestorage.js?type=application/javascript&pipeline=self&id=93b97dccb8fa181cf2c9adbf03f515e72b283ad088f2772e3e3aff3173030b18:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/4e/4eGM2KF0EfJsnRUxaBL0MUNqqFfA3CYba2l2uX6ZsGo.cache b/tmp/cache/assets/sprockets/v3.0/4e/4eGM2KF0EfJsnRUxaBL0MUNqqFfA3CYba2l2uX6ZsGo.cache new file mode 100644 index 000000000..d3dc2ea20 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/4e/4eGM2KF0EfJsnRUxaBL0MUNqqFfA3CYba2l2uX6ZsGo.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/4u/4uPorALrYpm0Q21StYCKtqwY43rboo_-FFyqAx46i1c.cache b/tmp/cache/assets/sprockets/v3.0/4u/4uPorALrYpm0Q21StYCKtqwY43rboo_-FFyqAx46i1c.cache new file mode 100644 index 000000000..f6bf16054 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/4u/4uPorALrYpm0Q21StYCKtqwY43rboo_-FFyqAx46i1c.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/4y/4yLx5wT8t_g_EK8I-BE6yt6RMQXBSEPlgvHOws-zGfg.cache b/tmp/cache/assets/sprockets/v3.0/4y/4yLx5wT8t_g_EK8I-BE6yt6RMQXBSEPlgvHOws-zGfg.cache new file mode 100644 index 000000000..cdaae2963 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/4y/4yLx5wT8t_g_EK8I-BE6yt6RMQXBSEPlgvHOws-zGfg.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/57/576P7-q03Pq88BPCOYpIwVUSvIZE15XmwUhYZvdEPHM.cache b/tmp/cache/assets/sprockets/v3.0/57/576P7-q03Pq88BPCOYpIwVUSvIZE15XmwUhYZvdEPHM.cache new file mode 100644 index 000000000..b6165c085 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/57/576P7-q03Pq88BPCOYpIwVUSvIZE15XmwUhYZvdEPHM.cache @@ -0,0 +1 @@ +"%Ã÷Kj u”Mºá<¥ŽõdXï¤ñšrÁ«°f0 \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/5B/5BqCl1RfFw-j9thTaTf_j0KIcBEuwEzkoYkLKxRhtG4.cache b/tmp/cache/assets/sprockets/v3.0/5B/5BqCl1RfFw-j9thTaTf_j0KIcBEuwEzkoYkLKxRhtG4.cache new file mode 100644 index 000000000..060974d7a Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/5B/5BqCl1RfFw-j9thTaTf_j0KIcBEuwEzkoYkLKxRhtG4.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/5C/5CKNd2HU85B6ql_Wg2e8fEl4NgExwcDIDnkVrSDZH8w.cache b/tmp/cache/assets/sprockets/v3.0/5C/5CKNd2HU85B6ql_Wg2e8fEl4NgExwcDIDnkVrSDZH8w.cache new file mode 100644 index 000000000..a58cbb14f Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/5C/5CKNd2HU85B6ql_Wg2e8fEl4NgExwcDIDnkVrSDZH8w.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/5Q/5QmJjUikJAfRh2MhPkrJSRO8HknQf2HN0pFwIHTDR9c.cache b/tmp/cache/assets/sprockets/v3.0/5Q/5QmJjUikJAfRh2MhPkrJSRO8HknQf2HN0pFwIHTDR9c.cache new file mode 100644 index 000000000..f83937c30 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/5Q/5QmJjUikJAfRh2MhPkrJSRO8HknQf2HN0pFwIHTDR9c.cache @@ -0,0 +1 @@ +"%̀ܢÎÄì¤ò¥ê*C ól!19Ø£¼"'ÿ*[P \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/5_/5_tzIlNTuJx9FHE9MsZQaPPgCe20kZV2yg0FOXr36yc.cache b/tmp/cache/assets/sprockets/v3.0/5_/5_tzIlNTuJx9FHE9MsZQaPPgCe20kZV2yg0FOXr36yc.cache new file mode 100644 index 000000000..d42f4dc90 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/5_/5_tzIlNTuJx9FHE9MsZQaPPgCe20kZV2yg0FOXr36yc.cache @@ -0,0 +1 @@ +I"ˆapp/assets/stylesheets/application.scss?type=text/css&pipeline=debug&id=e18a12a71a981a66dd0c381ecb1767e9b9e67e3ec4d5a0d5145be1ace80f495a:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/5i/5iUCi5ujh6Sfsl7lnc2S-R_Xh7LkNCIdxFe2-mNn1ic.cache b/tmp/cache/assets/sprockets/v3.0/5i/5iUCi5ujh6Sfsl7lnc2S-R_Xh7LkNCIdxFe2-mNn1ic.cache new file mode 100644 index 000000000..ee56956d1 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/5i/5iUCi5ujh6Sfsl7lnc2S-R_Xh7LkNCIdxFe2-mNn1ic.cache @@ -0,0 +1,3 @@ +[o:Set: +@hash} +I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"Zprocessors:type=application/javascript&file_type=application/javascript&pipeline=self;TTI"yfile-digest:///Users/kjfitzpatrick/.rvm/gems/ruby-2.5.1/gems/bootstrap-4.1.3/assets/javascripts/bootstrap/popover.js;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/5n/5nvo8Fm23yBe5EH6oheKWh3f3lG1n37HnyjUSeZS2m8.cache b/tmp/cache/assets/sprockets/v3.0/5n/5nvo8Fm23yBe5EH6oheKWh3f3lG1n37HnyjUSeZS2m8.cache new file mode 100644 index 000000000..e6eda41ec --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/5n/5nvo8Fm23yBe5EH6oheKWh3f3lG1n37HnyjUSeZS2m8.cache @@ -0,0 +1,3 @@ +[o:Set: +@hash} +I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"Zprocessors:type=application/javascript&file_type=application/javascript&pipeline=self;TTI"4file-digest://app/assets/javascripts/recipes.js;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/5x/5X0sHSV_ZSkp4s8r7GwV57-JjKG-2McUQQcE5DX4X5A.cache b/tmp/cache/assets/sprockets/v3.0/5x/5X0sHSV_ZSkp4s8r7GwV57-JjKG-2McUQQcE5DX4X5A.cache new file mode 100644 index 000000000..3081cb732 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/5x/5X0sHSV_ZSkp4s8r7GwV57-JjKG-2McUQQcE5DX4X5A.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/5x/5xD16yftAdW-yM0RuibBx9rAmJ5hYBt_QBBWsgywDy8.cache b/tmp/cache/assets/sprockets/v3.0/5x/5xD16yftAdW-yM0RuibBx9rAmJ5hYBt_QBBWsgywDy8.cache new file mode 100644 index 000000000..56fa8b56f --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/5x/5xD16yftAdW-yM0RuibBx9rAmJ5hYBt_QBBWsgywDy8.cache @@ -0,0 +1 @@ +"%E*.ÍË© ”9ˆŽú¼#ƒzÆzèñ_‡.Ïa Á \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/5z/5ztxk6WJzFsD9aANoHSkR8jJDYoDupzwwv5sfhysgXA.cache b/tmp/cache/assets/sprockets/v3.0/5z/5ztxk6WJzFsD9aANoHSkR8jJDYoDupzwwv5sfhysgXA.cache new file mode 100644 index 000000000..92c56ab29 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/5z/5ztxk6WJzFsD9aANoHSkR8jJDYoDupzwwv5sfhysgXA.cache @@ -0,0 +1 @@ +I"ˆapp/assets/stylesheets/application.scss?type=text/css&pipeline=debug&id=ff6cefb67a4863cf2113b2984f827179dffb5ee1419cbe81681714a0867f524c:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/63/634DWINGzPpsl1oy26ZXm0iOmATruOVVPrKrSroMv3A.cache b/tmp/cache/assets/sprockets/v3.0/63/634DWINGzPpsl1oy26ZXm0iOmATruOVVPrKrSroMv3A.cache new file mode 100644 index 000000000..087894560 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/63/634DWINGzPpsl1oy26ZXm0iOmATruOVVPrKrSroMv3A.cache @@ -0,0 +1 @@ +I"‡app/assets/stylesheets/application.scss?type=text/css&pipeline=self&id=4147423262e0559ceff66e2b34ab211e8f0999566ed055210634fc2829ac626c:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/65/65-FmAQaWe3RcDUkVSnL_DLHQ8tLMhtUlk9NODIvS5M.cache b/tmp/cache/assets/sprockets/v3.0/65/65-FmAQaWe3RcDUkVSnL_DLHQ8tLMhtUlk9NODIvS5M.cache new file mode 100644 index 000000000..a8dd77ced --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/65/65-FmAQaWe3RcDUkVSnL_DLHQ8tLMhtUlk9NODIvS5M.cache @@ -0,0 +1 @@ +I"‡app/assets/stylesheets/application.scss?type=text/css&pipeline=self&id=7ffe24b7c06e1b69cab6091c86c0e9c05a6ecb11094a036be7adfb6e91ada796:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/65/65_PdT6WisBDnOvVn-cuxzpk2b12BhFxnm7nJyprVXc.cache b/tmp/cache/assets/sprockets/v3.0/65/65_PdT6WisBDnOvVn-cuxzpk2b12BhFxnm7nJyprVXc.cache new file mode 100644 index 000000000..e728f8170 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/65/65_PdT6WisBDnOvVn-cuxzpk2b12BhFxnm7nJyprVXc.cache @@ -0,0 +1 @@ +"%R£éc‚Mþª*\ç.Õ­_=o²å+n~ÜF#_´ž \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/6A/6APRr0diKVK8rbaM88-w1Qm3tI1DJC_tdzDukRxaezg.cache b/tmp/cache/assets/sprockets/v3.0/6A/6APRr0diKVK8rbaM88-w1Qm3tI1DJC_tdzDukRxaezg.cache new file mode 100644 index 000000000..1ccfdcca8 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/6A/6APRr0diKVK8rbaM88-w1Qm3tI1DJC_tdzDukRxaezg.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/6Y/6YoNMasSaQDiUPt_7JoIFPDGe739m0AuOHSwGxn0vPE.cache b/tmp/cache/assets/sprockets/v3.0/6Y/6YoNMasSaQDiUPt_7JoIFPDGe739m0AuOHSwGxn0vPE.cache new file mode 100644 index 000000000..04ca75374 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/6Y/6YoNMasSaQDiUPt_7JoIFPDGe739m0AuOHSwGxn0vPE.cache @@ -0,0 +1 @@ +"%¯a4ôϱ7˜šDü§6¿öâñÛ:ãߨñL¬„M+¶ \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/6Y/6yajdy65S_CJphfDv7yxQ4EQl6IaYNgUdZmk-AfX6eA.cache b/tmp/cache/assets/sprockets/v3.0/6Y/6yajdy65S_CJphfDv7yxQ4EQl6IaYNgUdZmk-AfX6eA.cache new file mode 100644 index 000000000..ef5d53fb2 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/6Y/6yajdy65S_CJphfDv7yxQ4EQl6IaYNgUdZmk-AfX6eA.cache @@ -0,0 +1 @@ +I"‡app/assets/stylesheets/application.scss?type=text/css&pipeline=self&id=7231643f8a30f78899c6b3b670d9edf5a2634c4ec78e67adb6e091e87d936a01:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/6c/6cM7xL2JFDzNF2Up_byKh4Q2nXteihFXo1NlCSonLsc.cache b/tmp/cache/assets/sprockets/v3.0/6c/6cM7xL2JFDzNF2Up_byKh4Q2nXteihFXo1NlCSonLsc.cache new file mode 100644 index 000000000..a39658a67 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/6c/6cM7xL2JFDzNF2Up_byKh4Q2nXteihFXo1NlCSonLsc.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/6d/6DE7EnOf0qE0nNn-v-Qy45QlLH7hlH81_etXFH7aX2M.cache b/tmp/cache/assets/sprockets/v3.0/6d/6DE7EnOf0qE0nNn-v-Qy45QlLH7hlH81_etXFH7aX2M.cache new file mode 100644 index 000000000..184f282d9 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/6d/6DE7EnOf0qE0nNn-v-Qy45QlLH7hlH81_etXFH7aX2M.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/6d/6djhjNUjJ79kluEAb2mynExZLtvl4831y7oDy8resaU.cache b/tmp/cache/assets/sprockets/v3.0/6d/6djhjNUjJ79kluEAb2mynExZLtvl4831y7oDy8resaU.cache new file mode 100644 index 000000000..a0cf909c6 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/6d/6djhjNUjJ79kluEAb2mynExZLtvl4831y7oDy8resaU.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/6p/6pMqNz62dlurq4ytdGyKTPAGDuqitpP_kMsfh1I46_Y.cache b/tmp/cache/assets/sprockets/v3.0/6p/6pMqNz62dlurq4ytdGyKTPAGDuqitpP_kMsfh1I46_Y.cache new file mode 100644 index 000000000..3081cb732 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/6p/6pMqNz62dlurq4ytdGyKTPAGDuqitpP_kMsfh1I46_Y.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/6q/6qSJarN51MApCeFHgHV34Vmi0iL0Fy2gKAEpEWO55Xc.cache b/tmp/cache/assets/sprockets/v3.0/6q/6qSJarN51MApCeFHgHV34Vmi0iL0Fy2gKAEpEWO55Xc.cache new file mode 100644 index 000000000..d439c9cee Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/6q/6qSJarN51MApCeFHgHV34Vmi0iL0Fy2gKAEpEWO55Xc.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/6q/6qco3R7jl1axC2YRgVuNPfx7ivqyrRu9lFnp-JgI_iM.cache b/tmp/cache/assets/sprockets/v3.0/6q/6qco3R7jl1axC2YRgVuNPfx7ivqyrRu9lFnp-JgI_iM.cache new file mode 100644 index 000000000..3ace506eb --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/6q/6qco3R7jl1axC2YRgVuNPfx7ivqyrRu9lFnp-JgI_iM.cache @@ -0,0 +1 @@ +"%xC™S÷ØA\•—]I[¼ád½°·ó/æXdž›³²³ \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/6v/6vBFM1qLI4ujIdM_bCR4LWQnQUm9jyVRouQ9RKnqxtQ.cache b/tmp/cache/assets/sprockets/v3.0/6v/6vBFM1qLI4ujIdM_bCR4LWQnQUm9jyVRouQ9RKnqxtQ.cache new file mode 100644 index 000000000..309177332 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/6v/6vBFM1qLI4ujIdM_bCR4LWQnQUm9jyVRouQ9RKnqxtQ.cache @@ -0,0 +1 @@ +I"Ê/Users/kjfitzpatrick/.rvm/gems/ruby-2.5.1/gems/popper_js-1.14.3/assets/javascripts/popper.js?type=application/javascript&pipeline=self&id=26a53c5b5fbffdbcc95605b3ccc1e8b1307b1960f3e2e958a1241908cfe2edd0:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/6w/6wgD906YrlCtDiUL8VUqX02s5mw1NuPxj-h2PmPES5Q.cache b/tmp/cache/assets/sprockets/v3.0/6w/6wgD906YrlCtDiUL8VUqX02s5mw1NuPxj-h2PmPES5Q.cache new file mode 100644 index 000000000..3d303f4f0 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/6w/6wgD906YrlCtDiUL8VUqX02s5mw1NuPxj-h2PmPES5Q.cache @@ -0,0 +1 @@ +I"ˆapp/assets/stylesheets/application.scss?type=text/css&pipeline=debug&id=773529f690755cb85ea63737b920f588942877bfab05fdce0c9dfe09bf7b699a:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/75/75alhrl04JWxwMNGVfUwP46jSJgA1zgnTmHLucdDyPA.cache b/tmp/cache/assets/sprockets/v3.0/75/75alhrl04JWxwMNGVfUwP46jSJgA1zgnTmHLucdDyPA.cache new file mode 100644 index 000000000..bd5de88d8 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/75/75alhrl04JWxwMNGVfUwP46jSJgA1zgnTmHLucdDyPA.cache @@ -0,0 +1,3 @@ +[o:Set: +@hash} +I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"Zprocessors:type=application/javascript&file_type=application/javascript&pipeline=self;TTI"wfile-digest:///Users/kjfitzpatrick/.rvm/gems/ruby-2.5.1/gems/actioncable-5.2.1/lib/assets/compiled/action_cable.js;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/7D/7D6caD8xrVygetb-GFbdsfcwZv3EunvjdqEfLlqeLxU.cache b/tmp/cache/assets/sprockets/v3.0/7D/7D6caD8xrVygetb-GFbdsfcwZv3EunvjdqEfLlqeLxU.cache new file mode 100644 index 000000000..50b9fbdfd --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/7D/7D6caD8xrVygetb-GFbdsfcwZv3EunvjdqEfLlqeLxU.cache @@ -0,0 +1,3 @@ +[o:Set: +@hash} +I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"Zprocessors:type=application/javascript&file_type=application/javascript&pipeline=self;TTI"ufile-digest:///Users/kjfitzpatrick/.rvm/gems/ruby-2.5.1/gems/bootstrap-4.1.3/assets/javascripts/bootstrap/tab.js;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/7G/7Gg12k27biczjev9sEaM1wrKU5m8ViOXvFJ9cu3RqOI.cache b/tmp/cache/assets/sprockets/v3.0/7G/7Gg12k27biczjev9sEaM1wrKU5m8ViOXvFJ9cu3RqOI.cache new file mode 100644 index 000000000..e819eb341 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/7G/7Gg12k27biczjev9sEaM1wrKU5m8ViOXvFJ9cu3RqOI.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/7G/7gabqXMLoeEWC6hc6GFs7I5B4pJoTHPCJzV1dGmGyLo.cache b/tmp/cache/assets/sprockets/v3.0/7G/7gabqXMLoeEWC6hc6GFs7I5B4pJoTHPCJzV1dGmGyLo.cache new file mode 100644 index 000000000..a20334f90 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/7G/7gabqXMLoeEWC6hc6GFs7I5B4pJoTHPCJzV1dGmGyLo.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/7L/7L_O_OwGDz7zqeHJs0TOYU8TB758byRxZ_ssKyX247o.cache b/tmp/cache/assets/sprockets/v3.0/7L/7L_O_OwGDz7zqeHJs0TOYU8TB758byRxZ_ssKyX247o.cache new file mode 100644 index 000000000..c83361e38 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/7L/7L_O_OwGDz7zqeHJs0TOYU8TB758byRxZ_ssKyX247o.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/7N/7N36ZFeRMThfMwhoI8UvpYh12ML3hpIO4goIf_44V1Y.cache b/tmp/cache/assets/sprockets/v3.0/7N/7N36ZFeRMThfMwhoI8UvpYh12ML3hpIO4goIf_44V1Y.cache new file mode 100644 index 000000000..edec7f6bc --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/7N/7N36ZFeRMThfMwhoI8UvpYh12ML3hpIO4goIf_44V1Y.cache @@ -0,0 +1 @@ +"%uç ÉÍ»e9·'aCÏ ‰E/8ŽP²ô ƒÝ@Ž`ɬ¢ \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/7N/7nOcYNMzIbm_Aoo1UgnaA-74WD0O7dM_IJEtCEWps0c.cache b/tmp/cache/assets/sprockets/v3.0/7N/7nOcYNMzIbm_Aoo1UgnaA-74WD0O7dM_IJEtCEWps0c.cache new file mode 100644 index 000000000..81ca8d3bd --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/7N/7nOcYNMzIbm_Aoo1UgnaA-74WD0O7dM_IJEtCEWps0c.cache @@ -0,0 +1 @@ +"%øôsV)ŸcÕ¦‚‹iTõé+ø-…7A Zè>ÿÝ– \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/7R/7RNmhhtICbbUuXMFHLZqNkN1ambC4xVO-EkFafUcUXc.cache b/tmp/cache/assets/sprockets/v3.0/7R/7RNmhhtICbbUuXMFHLZqNkN1ambC4xVO-EkFafUcUXc.cache new file mode 100644 index 000000000..a86a2aae6 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/7R/7RNmhhtICbbUuXMFHLZqNkN1ambC4xVO-EkFafUcUXc.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/7V/7VPKV3i1e1-iVO2LqsrZJ9ntO9TxBLECKpHt06J5Dew.cache b/tmp/cache/assets/sprockets/v3.0/7V/7VPKV3i1e1-iVO2LqsrZJ9ntO9TxBLECKpHt06J5Dew.cache new file mode 100644 index 000000000..6ed13f930 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/7V/7VPKV3i1e1-iVO2LqsrZJ9ntO9TxBLECKpHt06J5Dew.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/7b/7bMYcGEL9xoI34GpRyGNTbDJgGsDviMWNOM30A03HUQ.cache b/tmp/cache/assets/sprockets/v3.0/7b/7bMYcGEL9xoI34GpRyGNTbDJgGsDviMWNOM30A03HUQ.cache new file mode 100644 index 000000000..bcf5d38a6 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/7b/7bMYcGEL9xoI34GpRyGNTbDJgGsDviMWNOM30A03HUQ.cache @@ -0,0 +1 @@ +I"†app/assets/images/Death_to_Stock_Fall_Dinner_5.jpg?type=image/jpeg&id=445ffaebf246fd8ac09f6317e4196bd323fa83a0828f3880b1c5f2ad01437d31:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/7f/7fzatL6uRj3CLy0hVPg4nUdg4U9KKAIvVrbZDBoEW9E.cache b/tmp/cache/assets/sprockets/v3.0/7f/7fzatL6uRj3CLy0hVPg4nUdg4U9KKAIvVrbZDBoEW9E.cache new file mode 100644 index 000000000..6ed13f930 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/7f/7fzatL6uRj3CLy0hVPg4nUdg4U9KKAIvVrbZDBoEW9E.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/7j/7jOY6WV34jPdSZdZtD9Wb4JGgOsjoqgIFwT-z3GgXRM.cache b/tmp/cache/assets/sprockets/v3.0/7j/7jOY6WV34jPdSZdZtD9Wb4JGgOsjoqgIFwT-z3GgXRM.cache new file mode 100644 index 000000000..24d3d3148 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/7j/7jOY6WV34jPdSZdZtD9Wb4JGgOsjoqgIFwT-z3GgXRM.cache @@ -0,0 +1 @@ +"%]ç¨åŒåjãE›]! /ËÞáWÿy»ÉúrÒ×x \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/7j/7joqEXbUZuL54CQDr1UANcOGXbAhEPwwJS2OGPY3GN4.cache b/tmp/cache/assets/sprockets/v3.0/7j/7joqEXbUZuL54CQDr1UANcOGXbAhEPwwJS2OGPY3GN4.cache new file mode 100644 index 000000000..8b06772da Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/7j/7joqEXbUZuL54CQDr1UANcOGXbAhEPwwJS2OGPY3GN4.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/7s/7sB9oPNCoE2-EtywJnRQiiMa_dmTfMpcMZGSLHagVEE.cache b/tmp/cache/assets/sprockets/v3.0/7s/7sB9oPNCoE2-EtywJnRQiiMa_dmTfMpcMZGSLHagVEE.cache new file mode 100644 index 000000000..604595595 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/7s/7sB9oPNCoE2-EtywJnRQiiMa_dmTfMpcMZGSLHagVEE.cache @@ -0,0 +1 @@ +I"ˆapp/assets/stylesheets/application.scss?type=text/css&pipeline=debug&id=ba576aa07be01091e9560d2e7fdd9c13c017064d5baa0da9af536a09e21a2e8e:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/7y/7ySGUNDya6eRrn1hgLove8ENxPd-gsoPVdglV-zPzIw.cache b/tmp/cache/assets/sprockets/v3.0/7y/7ySGUNDya6eRrn1hgLove8ENxPd-gsoPVdglV-zPzIw.cache new file mode 100644 index 000000000..ba3d297d4 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/7y/7ySGUNDya6eRrn1hgLove8ENxPd-gsoPVdglV-zPzIw.cache @@ -0,0 +1 @@ +I"…app/assets/javascripts/application.js?type=application/javascript&id=ab49e9b5dcd3e04eb67cb77fdbbdb1ad68d5a9a1467d85653a620f3aeaff0bb5:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/84/84be6QwYin6CFh5aoUzLXYu8ysFwoLoaVzoCpKdRNS8.cache b/tmp/cache/assets/sprockets/v3.0/84/84be6QwYin6CFh5aoUzLXYu8ysFwoLoaVzoCpKdRNS8.cache new file mode 100644 index 000000000..3081cb732 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/84/84be6QwYin6CFh5aoUzLXYu8ysFwoLoaVzoCpKdRNS8.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/87/870eBh8oaMORVnDiZrhK2RDlqK5yJ3mx-8hLC1SJiZI.cache b/tmp/cache/assets/sprockets/v3.0/87/870eBh8oaMORVnDiZrhK2RDlqK5yJ3mx-8hLC1SJiZI.cache new file mode 100644 index 000000000..611aad117 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/87/870eBh8oaMORVnDiZrhK2RDlqK5yJ3mx-8hLC1SJiZI.cache @@ -0,0 +1 @@ +"%t%ÿøÐ398ÊüÖN«½Ö1d~“øúVîºFZ \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/8B/8BI9s4HH-9L9wqSUkZdTo9pmmwo3tuJIitSHpgoYsGo.cache b/tmp/cache/assets/sprockets/v3.0/8B/8BI9s4HH-9L9wqSUkZdTo9pmmwo3tuJIitSHpgoYsGo.cache new file mode 100644 index 000000000..ef550d038 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/8B/8BI9s4HH-9L9wqSUkZdTo9pmmwo3tuJIitSHpgoYsGo.cache @@ -0,0 +1 @@ +I"ˆapp/assets/stylesheets/application.scss?type=text/css&pipeline=debug&id=6bcc902420e6600b87c004e8031c1d634ffa16845def391621b32091238b4e04:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/8C/8CxE6dxyvsJwBTW_Xi_2psItq73-OnFO9Nk1vrECfPc.cache b/tmp/cache/assets/sprockets/v3.0/8C/8CxE6dxyvsJwBTW_Xi_2psItq73-OnFO9Nk1vrECfPc.cache new file mode 100644 index 000000000..fd2e100b1 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/8C/8CxE6dxyvsJwBTW_Xi_2psItq73-OnFO9Nk1vrECfPc.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/8C/8cH6tvwPJpeD0vkNnFA7AwvKqPdLgU3cecF9EQRosDw.cache b/tmp/cache/assets/sprockets/v3.0/8C/8cH6tvwPJpeD0vkNnFA7AwvKqPdLgU3cecF9EQRosDw.cache new file mode 100644 index 000000000..c83361e38 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/8C/8cH6tvwPJpeD0vkNnFA7AwvKqPdLgU3cecF9EQRosDw.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/8J/8JrafrNdrF_zfDtau72yBX1KHXGRfBXpksc2WWVe9co.cache b/tmp/cache/assets/sprockets/v3.0/8J/8JrafrNdrF_zfDtau72yBX1KHXGRfBXpksc2WWVe9co.cache new file mode 100644 index 000000000..79cef7ab2 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/8J/8JrafrNdrF_zfDtau72yBX1KHXGRfBXpksc2WWVe9co.cache @@ -0,0 +1 @@ +"%%„FÞ‘MÔ{zøWQ™¦k“ÆO¢ïâ®Ä,r™¥ \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/8N/8NxX893T1iN4Ssi-gQ74KJP_wRTX8SsFcRlpQfsn99w.cache b/tmp/cache/assets/sprockets/v3.0/8N/8NxX893T1iN4Ssi-gQ74KJP_wRTX8SsFcRlpQfsn99w.cache new file mode 100644 index 000000000..c2abc4dac --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/8N/8NxX893T1iN4Ssi-gQ74KJP_wRTX8SsFcRlpQfsn99w.cache @@ -0,0 +1 @@ +I"‡app/assets/stylesheets/application.scss?type=text/css&pipeline=self&id=064cf9af2ed49932a9f6d3c8ca7ea1708a05013538ced363c51cb7351de1ab1c:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/8N/8n6LUC_NOU4Jao--rSmcFzSAFoxkHzaey4G6zh3skUc.cache b/tmp/cache/assets/sprockets/v3.0/8N/8n6LUC_NOU4Jao--rSmcFzSAFoxkHzaey4G6zh3skUc.cache new file mode 100644 index 000000000..5d159b042 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/8N/8n6LUC_NOU4Jao--rSmcFzSAFoxkHzaey4G6zh3skUc.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/8e/8eK_LXFQ1tEn2YsOeEvxBQXMEHaPOzckesN_sXODf8o.cache b/tmp/cache/assets/sprockets/v3.0/8e/8eK_LXFQ1tEn2YsOeEvxBQXMEHaPOzckesN_sXODf8o.cache new file mode 100644 index 000000000..9cd196578 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/8e/8eK_LXFQ1tEn2YsOeEvxBQXMEHaPOzckesN_sXODf8o.cache @@ -0,0 +1 @@ +"%WËl‚ý1—ÔH’¥»_]µÌgÄʲ‹‘¸bÓ)Rqù{_ \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/8f/8fe6dwsQfv7fuyKpd8vNAO1c0-QO5igb8E1uQWpdGk0.cache b/tmp/cache/assets/sprockets/v3.0/8f/8fe6dwsQfv7fuyKpd8vNAO1c0-QO5igb8E1uQWpdGk0.cache new file mode 100644 index 000000000..562750382 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/8f/8fe6dwsQfv7fuyKpd8vNAO1c0-QO5igb8E1uQWpdGk0.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/8g/8gIlDp44Q1KpQHHRX-9Ro2DaUJ4aQYOa1Ng5TQKiAF0.cache b/tmp/cache/assets/sprockets/v3.0/8g/8gIlDp44Q1KpQHHRX-9Ro2DaUJ4aQYOa1Ng5TQKiAF0.cache new file mode 100644 index 000000000..e9dff7b1b Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/8g/8gIlDp44Q1KpQHHRX-9Ro2DaUJ4aQYOa1Ng5TQKiAF0.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/8p/8p7skF92vOr1GRJFcrtyeb3gYExKwwAQjskWnLv887I.cache b/tmp/cache/assets/sprockets/v3.0/8p/8p7skF92vOr1GRJFcrtyeb3gYExKwwAQjskWnLv887I.cache new file mode 100644 index 000000000..4bc2fa1aa --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/8p/8p7skF92vOr1GRJFcrtyeb3gYExKwwAQjskWnLv887I.cache @@ -0,0 +1 @@ +I"ˆapp/assets/stylesheets/application.scss?type=text/css&pipeline=debug&id=23f978df3045fae0369337186602e77eb591461d31caf98cbfe7260922c5c98f:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/8p/8pzWdBryBw4L1dFEJtW0cwx_1-_tk0BqenTaVJlrbhk.cache b/tmp/cache/assets/sprockets/v3.0/8p/8pzWdBryBw4L1dFEJtW0cwx_1-_tk0BqenTaVJlrbhk.cache new file mode 100644 index 000000000..8db8bfb04 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/8p/8pzWdBryBw4L1dFEJtW0cwx_1-_tk0BqenTaVJlrbhk.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/8u/8uaWqS2nAAfZAXE1U5093HFIsaIkUDd-moAmouVzhCo.cache b/tmp/cache/assets/sprockets/v3.0/8u/8uaWqS2nAAfZAXE1U5093HFIsaIkUDd-moAmouVzhCo.cache new file mode 100644 index 000000000..eb6071aa5 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/8u/8uaWqS2nAAfZAXE1U5093HFIsaIkUDd-moAmouVzhCo.cache @@ -0,0 +1,2 @@ +"%Ö‰x±pKuøbu-uUðÝh¦m¢Š +$0«Ó \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/8v/8v5NhhA5PuQple3tDFQo3w9ZvLmhIc_c151tP7nVY7o.cache b/tmp/cache/assets/sprockets/v3.0/8v/8v5NhhA5PuQple3tDFQo3w9ZvLmhIc_c151tP7nVY7o.cache new file mode 100644 index 000000000..83231ec4c Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/8v/8v5NhhA5PuQple3tDFQo3w9ZvLmhIc_c151tP7nVY7o.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/9J/9JGWyihmCTGL9y5fFkdK5NDsIuj6RvKpKBfAoZDp5cQ.cache b/tmp/cache/assets/sprockets/v3.0/9J/9JGWyihmCTGL9y5fFkdK5NDsIuj6RvKpKBfAoZDp5cQ.cache new file mode 100644 index 000000000..51993dd40 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/9J/9JGWyihmCTGL9y5fFkdK5NDsIuj6RvKpKBfAoZDp5cQ.cache @@ -0,0 +1 @@ +"%-Dò £r¦5óÃßciQÀïg K¼lí2$4ƒtÐ \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/9M/9Mo0Xi61QwUm8coBrwy_h8iDm8OKxtogqQJ4QJBM6ZA.cache b/tmp/cache/assets/sprockets/v3.0/9M/9Mo0Xi61QwUm8coBrwy_h8iDm8OKxtogqQJ4QJBM6ZA.cache new file mode 100644 index 000000000..c83361e38 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/9M/9Mo0Xi61QwUm8coBrwy_h8iDm8OKxtogqQJ4QJBM6ZA.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/9f/9fQ0BFgsx1Fl7eH6kEwtLha9wJzB5tRkLoKNsTrtfZY.cache b/tmp/cache/assets/sprockets/v3.0/9f/9fQ0BFgsx1Fl7eH6kEwtLha9wJzB5tRkLoKNsTrtfZY.cache new file mode 100644 index 000000000..0912d9c6e Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/9f/9fQ0BFgsx1Fl7eH6kEwtLha9wJzB5tRkLoKNsTrtfZY.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/9p/9p-079TjVxzqE0FuIJ41l4hCGkK7z_AVP_rpDlfQ50U.cache b/tmp/cache/assets/sprockets/v3.0/9p/9p-079TjVxzqE0FuIJ41l4hCGkK7z_AVP_rpDlfQ50U.cache new file mode 100644 index 000000000..9d301c43a --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/9p/9p-079TjVxzqE0FuIJ41l4hCGkK7z_AVP_rpDlfQ50U.cache @@ -0,0 +1 @@ +"%’¿qðs‡g‚ø=Aÿ9'$m›Pgíðux\ýø&R5 \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/9r/9rk5_o-J58advzrWR_XWeYOSIQsbvE8K2_0RWChruH0.cache b/tmp/cache/assets/sprockets/v3.0/9r/9rk5_o-J58advzrWR_XWeYOSIQsbvE8K2_0RWChruH0.cache new file mode 100644 index 000000000..7a633041f --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/9r/9rk5_o-J58advzrWR_XWeYOSIQsbvE8K2_0RWChruH0.cache @@ -0,0 +1 @@ +I"ˆapp/assets/stylesheets/application.scss?type=text/css&pipeline=debug&id=cb71f81999d915f4fedadd1d69e9df53faa4d0b17f793489b4ca8781e1442edb:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/9u/9ulBQ7NCLVs8nMr7nux291ybDimbg-3juuJH18GDJho.cache b/tmp/cache/assets/sprockets/v3.0/9u/9ulBQ7NCLVs8nMr7nux291ybDimbg-3juuJH18GDJho.cache new file mode 100644 index 000000000..a677140e0 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/9u/9ulBQ7NCLVs8nMr7nux291ybDimbg-3juuJH18GDJho.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/9w/9w5IqbeOBXKIOD5zDYWSDJ-Mm6vqD-gTOXx0C00o9BM.cache b/tmp/cache/assets/sprockets/v3.0/9w/9w5IqbeOBXKIOD5zDYWSDJ-Mm6vqD-gTOXx0C00o9BM.cache new file mode 100644 index 000000000..5d78a03ad Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/9w/9w5IqbeOBXKIOD5zDYWSDJ-Mm6vqD-gTOXx0C00o9BM.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/AG/AGAs5srCSsqvVywzgMzlxneYuhVB5F8D5ZiJpTwXZqQ.cache b/tmp/cache/assets/sprockets/v3.0/AG/AGAs5srCSsqvVywzgMzlxneYuhVB5F8D5ZiJpTwXZqQ.cache new file mode 100644 index 000000000..4bc7c99c3 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/AG/AGAs5srCSsqvVywzgMzlxneYuhVB5F8D5ZiJpTwXZqQ.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/AK/AKo-1jo-Z3UdyV35LkxhHHiFuM38_rwvdNtRLPoOjKc.cache b/tmp/cache/assets/sprockets/v3.0/AK/AKo-1jo-Z3UdyV35LkxhHHiFuM38_rwvdNtRLPoOjKc.cache new file mode 100644 index 000000000..4efa93759 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/AK/AKo-1jo-Z3UdyV35LkxhHHiFuM38_rwvdNtRLPoOjKc.cache @@ -0,0 +1 @@ +I"ˆapp/assets/stylesheets/application.scss?type=text/css&pipeline=debug&id=6c70b5368fa27a17c1838fcd767151802393b11013c43f08a56ee6f49a9c53ef:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/AO/AOT3pOGE2kkuIDkmz6mgNJt6_fOVLFfM2T5fEqBiOCE.cache b/tmp/cache/assets/sprockets/v3.0/AO/AOT3pOGE2kkuIDkmz6mgNJt6_fOVLFfM2T5fEqBiOCE.cache new file mode 100644 index 000000000..440bb33cf Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/AO/AOT3pOGE2kkuIDkmz6mgNJt6_fOVLFfM2T5fEqBiOCE.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/AQ/AQidISMV2gH5FIKQXqDi-dlN2T6cI-SodC3M-dvAfcQ.cache b/tmp/cache/assets/sprockets/v3.0/AQ/AQidISMV2gH5FIKQXqDi-dlN2T6cI-SodC3M-dvAfcQ.cache new file mode 100644 index 000000000..4fa2349ae --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/AQ/AQidISMV2gH5FIKQXqDi-dlN2T6cI-SodC3M-dvAfcQ.cache @@ -0,0 +1 @@ +"%á*¤z-ëÙ «ìÂÏáü73Ìœ YÄÄéüŒ \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/AQ/AqHlvEtos-pc_ICS2DWLvoDD5Crthg_4S4AYkNhp0o4.cache b/tmp/cache/assets/sprockets/v3.0/AQ/AqHlvEtos-pc_ICS2DWLvoDD5Crthg_4S4AYkNhp0o4.cache new file mode 100644 index 000000000..23a65f4d5 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/AQ/AqHlvEtos-pc_ICS2DWLvoDD5Crthg_4S4AYkNhp0o4.cache @@ -0,0 +1 @@ +"%]EÈüWq†ÞRG€dJÅÈX»É`'5l„»r鈭_‰^ \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/AR/ARg8Q9MT7bUENoy6KPqXYToOwZP5GhIKXi-FvRVTGE8.cache b/tmp/cache/assets/sprockets/v3.0/AR/ARg8Q9MT7bUENoy6KPqXYToOwZP5GhIKXi-FvRVTGE8.cache new file mode 100644 index 000000000..00136f4ab --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/AR/ARg8Q9MT7bUENoy6KPqXYToOwZP5GhIKXi-FvRVTGE8.cache @@ -0,0 +1,3 @@ +[o:Set: +@hash} +I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"Zprocessors:type=application/javascript&file_type=application/javascript&pipeline=self;TTI"zfile-digest:///Users/kjfitzpatrick/.rvm/gems/ruby-2.5.1/gems/bootstrap-4.1.3/assets/javascripts/bootstrap/collapse.js;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/AT/ATG_s5giwVccrGApsV3Ydmm_QlTb-WKXcyCUS7liFDs.cache b/tmp/cache/assets/sprockets/v3.0/AT/ATG_s5giwVccrGApsV3Ydmm_QlTb-WKXcyCUS7liFDs.cache new file mode 100644 index 000000000..b687fee91 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/AT/ATG_s5giwVccrGApsV3Ydmm_QlTb-WKXcyCUS7liFDs.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/AZ/AZsFTVrC8pQ1Uh90liiMyApRA3yZWNfgz3KufQBOHMs.cache b/tmp/cache/assets/sprockets/v3.0/AZ/AZsFTVrC8pQ1Uh90liiMyApRA3yZWNfgz3KufQBOHMs.cache new file mode 100644 index 000000000..947452430 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/AZ/AZsFTVrC8pQ1Uh90liiMyApRA3yZWNfgz3KufQBOHMs.cache @@ -0,0 +1 @@ +I"ˆapp/assets/stylesheets/application.scss?type=text/css&pipeline=debug&id=15ff9b03930d9a42be31a9e874cee6b01d29b57da2c20b21ad985bb5cf0d1f20:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Aa/AahvhFXPAgp2fSjY6uRPwozYZuja48J6izP5oCC7DRQ.cache b/tmp/cache/assets/sprockets/v3.0/Aa/AahvhFXPAgp2fSjY6uRPwozYZuja48J6izP5oCC7DRQ.cache new file mode 100644 index 000000000..440bb33cf Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/Aa/AahvhFXPAgp2fSjY6uRPwozYZuja48J6izP5oCC7DRQ.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/Ab/Ab6Tqo-_6gg7H4wGhQBHypEy9vx8Et4pr009X__uiFs.cache b/tmp/cache/assets/sprockets/v3.0/Ab/Ab6Tqo-_6gg7H4wGhQBHypEy9vx8Et4pr009X__uiFs.cache new file mode 100644 index 000000000..440bb33cf Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/Ab/Ab6Tqo-_6gg7H4wGhQBHypEy9vx8Et4pr009X__uiFs.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/Ab/AbJoFgfOhQnc9CBTY7YfqCxXuOhrzM_4nsS1_9JJ_FE.cache b/tmp/cache/assets/sprockets/v3.0/Ab/AbJoFgfOhQnc9CBTY7YfqCxXuOhrzM_4nsS1_9JJ_FE.cache new file mode 100644 index 000000000..e43dacee0 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/Ab/AbJoFgfOhQnc9CBTY7YfqCxXuOhrzM_4nsS1_9JJ_FE.cache @@ -0,0 +1 @@ +"%§$UR#‚Ù*=<$Ëwãê&½‘êUI@4b+œÊ[ \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Ab/aBa4CxFHBnZlVDw7FAZ6ScPkOHPWS_Q2dtoo0tf5HT8.cache b/tmp/cache/assets/sprockets/v3.0/Ab/aBa4CxFHBnZlVDw7FAZ6ScPkOHPWS_Q2dtoo0tf5HT8.cache new file mode 100644 index 000000000..3aa27bbf7 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/Ab/aBa4CxFHBnZlVDw7FAZ6ScPkOHPWS_Q2dtoo0tf5HT8.cache @@ -0,0 +1 @@ +I"‡app/assets/stylesheets/application.scss?type=text/css&pipeline=self&id=f7d4790caa344697e23bc71ecb7b43c9223ecbf93ab0ede8a7eb7e2fb8c37192:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Ab/ab5OqNIeOUDHbP6CTVkUjdFkoxnVTFdqL189NukY1qI.cache b/tmp/cache/assets/sprockets/v3.0/Ab/ab5OqNIeOUDHbP6CTVkUjdFkoxnVTFdqL189NukY1qI.cache new file mode 100644 index 000000000..c0f38ce8d --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/Ab/ab5OqNIeOUDHbP6CTVkUjdFkoxnVTFdqL189NukY1qI.cache @@ -0,0 +1 @@ +"%mˆ‰þrÜMQ¤.k22RUsPÓžEn ½4ßÒl¹ \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Ah/Ahm-DPlGv6HC_euVBwmT1WyADPHhAg1VMrwKlrSVHag.cache b/tmp/cache/assets/sprockets/v3.0/Ah/Ahm-DPlGv6HC_euVBwmT1WyADPHhAg1VMrwKlrSVHag.cache new file mode 100644 index 000000000..53f36b3e2 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/Ah/Ahm-DPlGv6HC_euVBwmT1WyADPHhAg1VMrwKlrSVHag.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/Ai/AiOeC6WhYAgi8pERpIcz9PcKd3405PBjqcUY3gvFd2o.cache b/tmp/cache/assets/sprockets/v3.0/Ai/AiOeC6WhYAgi8pERpIcz9PcKd3405PBjqcUY3gvFd2o.cache new file mode 100644 index 000000000..5c27ce5c2 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/Ai/AiOeC6WhYAgi8pERpIcz9PcKd3405PBjqcUY3gvFd2o.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/Am/AmWijRRiLr2ou6913l7oW9_J0vc77ZmglXpIeH8BaBs.cache b/tmp/cache/assets/sprockets/v3.0/Am/AmWijRRiLr2ou6913l7oW9_J0vc77ZmglXpIeH8BaBs.cache new file mode 100644 index 000000000..253b24a90 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/Am/AmWijRRiLr2ou6913l7oW9_J0vc77ZmglXpIeH8BaBs.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/Ap/ApbgwRtOAxxOtrmmYfbVDvYFNuHAfvsyYx1Qr3vvYEc.cache b/tmp/cache/assets/sprockets/v3.0/Ap/ApbgwRtOAxxOtrmmYfbVDvYFNuHAfvsyYx1Qr3vvYEc.cache new file mode 100644 index 000000000..f051bf239 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/Ap/ApbgwRtOAxxOtrmmYfbVDvYFNuHAfvsyYx1Qr3vvYEc.cache @@ -0,0 +1 @@ +I"ˆapp/assets/stylesheets/application.scss?type=text/css&pipeline=debug&id=be540bffc0a7ef50b158d8d6ebf5f1b6f24eb6fccbef6549f8178e9a435246b0:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Av/AvfHBGst5WEW-9V71tGuPtdPtc9h9v6YG9ZpCFkIVfU.cache b/tmp/cache/assets/sprockets/v3.0/Av/AvfHBGst5WEW-9V71tGuPtdPtc9h9v6YG9ZpCFkIVfU.cache new file mode 100644 index 000000000..a70338b2d --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/Av/AvfHBGst5WEW-9V71tGuPtdPtc9h9v6YG9ZpCFkIVfU.cache @@ -0,0 +1 @@ +I"‡app/assets/stylesheets/application.scss?type=text/css&pipeline=self&id=fb3e2fe29a31dc879f3d3c547495417a5ace22b8dcbb37918a9287e260289795:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/B0/B0C8br5afqtLNmT5Mpx1OWfd2U9dGZ74cFURX2CLlwA.cache b/tmp/cache/assets/sprockets/v3.0/B0/B0C8br5afqtLNmT5Mpx1OWfd2U9dGZ74cFURX2CLlwA.cache new file mode 100644 index 000000000..9c9c525b2 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/B0/B0C8br5afqtLNmT5Mpx1OWfd2U9dGZ74cFURX2CLlwA.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/BJ/BJsXuHWrCDiVcokOtXvKE_VoLmtLEDY5NJX0adtsw5A.cache b/tmp/cache/assets/sprockets/v3.0/BJ/BJsXuHWrCDiVcokOtXvKE_VoLmtLEDY5NJX0adtsw5A.cache new file mode 100644 index 000000000..eaf3c7593 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/BJ/BJsXuHWrCDiVcokOtXvKE_VoLmtLEDY5NJX0adtsw5A.cache @@ -0,0 +1 @@ +"%ã¯Gj8+š7Д3Üóà&ö60ë?#wÂÒH©ü¨mF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/BJ/BjUBkdx-beBTA2mxlBFLn_eae8ipyzpABRQQ9wPQ7wk.cache b/tmp/cache/assets/sprockets/v3.0/BJ/BjUBkdx-beBTA2mxlBFLn_eae8ipyzpABRQQ9wPQ7wk.cache new file mode 100644 index 000000000..c83361e38 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/BJ/BjUBkdx-beBTA2mxlBFLn_eae8ipyzpABRQQ9wPQ7wk.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/BJ/bJ9W--7z_yhITfRdM0_mNYYkbM5Y11FyqoVKNt5R2rs.cache b/tmp/cache/assets/sprockets/v3.0/BJ/bJ9W--7z_yhITfRdM0_mNYYkbM5Y11FyqoVKNt5R2rs.cache new file mode 100644 index 000000000..b2a5cf811 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/BJ/bJ9W--7z_yhITfRdM0_mNYYkbM5Y11FyqoVKNt5R2rs.cache @@ -0,0 +1 @@ +"%•Xþ¢UŒ:î“ЇàU•ÌÆ­ÈÃnA‡¾ŒÊO®ã \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/BJ/bJp3q5Xnd8G70bsRZTz-A1ltntq7lyRqWM3oLjGLGuI.cache b/tmp/cache/assets/sprockets/v3.0/BJ/bJp3q5Xnd8G70bsRZTz-A1ltntq7lyRqWM3oLjGLGuI.cache new file mode 100644 index 000000000..863005aec Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/BJ/bJp3q5Xnd8G70bsRZTz-A1ltntq7lyRqWM3oLjGLGuI.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/BL/BLDLbnS0x7B9gM4oWt8OzKm5pJ1Kye93qXuZNP-n93o.cache b/tmp/cache/assets/sprockets/v3.0/BL/BLDLbnS0x7B9gM4oWt8OzKm5pJ1Kye93qXuZNP-n93o.cache new file mode 100644 index 000000000..6ed13f930 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/BL/BLDLbnS0x7B9gM4oWt8OzKm5pJ1Kye93qXuZNP-n93o.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/BX/BX2sv4u5zpFmWiab4Z78EeJXxTOJ1Rk1OvfQcXOhG-E.cache b/tmp/cache/assets/sprockets/v3.0/BX/BX2sv4u5zpFmWiab4Z78EeJXxTOJ1Rk1OvfQcXOhG-E.cache new file mode 100644 index 000000000..9709d3cb7 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/BX/BX2sv4u5zpFmWiab4Z78EeJXxTOJ1Rk1OvfQcXOhG-E.cache @@ -0,0 +1,3 @@ +[o:Set: +@hash} +I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"Zprocessors:type=application/javascript&file_type=application/javascript&pipeline=self;TTI"}file-digest:///Users/kjfitzpatrick/.rvm/gems/ruby-2.5.1/gems/activestorage-5.2.1/app/assets/javascripts/activestorage.js;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Ba/Ba58yAOIBuIT-zVKK0DQmQMxgSFBTTegkfKDAuS4HxE.cache b/tmp/cache/assets/sprockets/v3.0/Ba/Ba58yAOIBuIT-zVKK0DQmQMxgSFBTTegkfKDAuS4HxE.cache new file mode 100644 index 000000000..51a5948cc Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/Ba/Ba58yAOIBuIT-zVKK0DQmQMxgSFBTTegkfKDAuS4HxE.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/Bb/Bb-Rx3JHkAir4IAbTXxZ1emVKeiJpNjKidD99RzRBFI.cache b/tmp/cache/assets/sprockets/v3.0/Bb/Bb-Rx3JHkAir4IAbTXxZ1emVKeiJpNjKidD99RzRBFI.cache new file mode 100644 index 000000000..f1c56f740 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/Bb/Bb-Rx3JHkAir4IAbTXxZ1emVKeiJpNjKidD99RzRBFI.cache @@ -0,0 +1,3 @@ +[o:Set: +@hash} +I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"Zprocessors:type=application/javascript&file_type=application/javascript&pipeline=self;TTI"8file-digest://app/assets/javascripts/application.js;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Bn/Bn8-RekZJKUl7xeoARuNV4IpXRJvpZ6SaHorPy07V_I.cache b/tmp/cache/assets/sprockets/v3.0/Bn/Bn8-RekZJKUl7xeoARuNV4IpXRJvpZ6SaHorPy07V_I.cache new file mode 100644 index 000000000..c7395c83a --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/Bn/Bn8-RekZJKUl7xeoARuNV4IpXRJvpZ6SaHorPy07V_I.cache @@ -0,0 +1 @@ +I"Ò/Users/kjfitzpatrick/.rvm/gems/ruby-2.5.1/gems/actioncable-5.2.1/lib/assets/compiled/action_cable.js?type=application/javascript&pipeline=self&id=6301a17fa038ee7d3f5ce70915575ecc2bf01c67fe98039a02b0025131f00821:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Bo/Bo4EehsSGEqB2qPVSp7JmlSoLzfKZimF_ZZ_KkRpMEc.cache b/tmp/cache/assets/sprockets/v3.0/Bo/Bo4EehsSGEqB2qPVSp7JmlSoLzfKZimF_ZZ_KkRpMEc.cache new file mode 100644 index 000000000..e1dfd44a4 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/Bo/Bo4EehsSGEqB2qPVSp7JmlSoLzfKZimF_ZZ_KkRpMEc.cache @@ -0,0 +1 @@ +I"~app/assets/stylesheets/application.scss?type=text/css&id=9cbe89ac3bd3e487bacb705c6f2a471200a125960ed3875f60a18d026b98338d:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Br/BrhMyAGddDAOP3_Qc2sVPss2lcoEUYwwrsR2BxOpI7I.cache b/tmp/cache/assets/sprockets/v3.0/Br/BrhMyAGddDAOP3_Qc2sVPss2lcoEUYwwrsR2BxOpI7I.cache new file mode 100644 index 000000000..f36decd30 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/Br/BrhMyAGddDAOP3_Qc2sVPss2lcoEUYwwrsR2BxOpI7I.cache @@ -0,0 +1 @@ +I"‡app/assets/stylesheets/application.scss?type=text/css&pipeline=self&id=4796bf78596454917cc16e15e986f118a33d9b98a77e63900e9210bd51c28337:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/C4/C45aYMgKO7lvHJ_n25xBBXLb3dKcSyhDl7ZiT5CSJVc.cache b/tmp/cache/assets/sprockets/v3.0/C4/C45aYMgKO7lvHJ_n25xBBXLb3dKcSyhDl7ZiT5CSJVc.cache new file mode 100644 index 000000000..7aee8dc34 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/C4/C45aYMgKO7lvHJ_n25xBBXLb3dKcSyhDl7ZiT5CSJVc.cache @@ -0,0 +1 @@ +I"“app/assets/javascripts/application.js?type=application/javascript&pipeline=self&id=6b2de076429f3fad3af256cb919531f873aa0ad453fe113162a673e69c121599:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/C6/C6-0sR3VOI-f_Unij35gKETrxnhJjYA5XSptClMqTZM.cache b/tmp/cache/assets/sprockets/v3.0/C6/C6-0sR3VOI-f_Unij35gKETrxnhJjYA5XSptClMqTZM.cache new file mode 100644 index 000000000..14c6ed6e7 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/C6/C6-0sR3VOI-f_Unij35gKETrxnhJjYA5XSptClMqTZM.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/C7/C7cWRYn8dqRy9bcDbj8PK81qBSMi6pqez4wSe0iaWrE.cache b/tmp/cache/assets/sprockets/v3.0/C7/C7cWRYn8dqRy9bcDbj8PK81qBSMi6pqez4wSe0iaWrE.cache new file mode 100644 index 000000000..3081cb732 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/C7/C7cWRYn8dqRy9bcDbj8PK81qBSMi6pqez4wSe0iaWrE.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/CE/CEjntKxVNVHqTyJlpS7_x0aw8ZEQONSrI2yEJj1dQQc.cache b/tmp/cache/assets/sprockets/v3.0/CE/CEjntKxVNVHqTyJlpS7_x0aw8ZEQONSrI2yEJj1dQQc.cache new file mode 100644 index 000000000..aca87a9f8 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/CE/CEjntKxVNVHqTyJlpS7_x0aw8ZEQONSrI2yEJj1dQQc.cache @@ -0,0 +1 @@ +I"Õ/Users/kjfitzpatrick/.rvm/gems/ruby-2.5.1/gems/bootstrap-4.1.3/assets/javascripts/bootstrap/collapse.js?type=application/javascript&pipeline=self&id=71cef93e7e65b6705f420a2ba210117e840803db647f37e1685946243b6954f3:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/CE/ceeuHVboKISBTH_z7aTnNIiv7mi51nkztiesR7TkAXE.cache b/tmp/cache/assets/sprockets/v3.0/CE/ceeuHVboKISBTH_z7aTnNIiv7mi51nkztiesR7TkAXE.cache new file mode 100644 index 000000000..6ed13f930 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/CE/ceeuHVboKISBTH_z7aTnNIiv7mi51nkztiesR7TkAXE.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/CK/CK_ylDFTj7y3m2tUDTpcWM55wRiuSeZYyQ2LEPkrjEY.cache b/tmp/cache/assets/sprockets/v3.0/CK/CK_ylDFTj7y3m2tUDTpcWM55wRiuSeZYyQ2LEPkrjEY.cache new file mode 100644 index 000000000..ed8e5da3e Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/CK/CK_ylDFTj7y3m2tUDTpcWM55wRiuSeZYyQ2LEPkrjEY.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/CK/cKrXK4-L-r89QZLZ_EUSHgo5dyY3S4O4d2ZhdtH8CtY.cache b/tmp/cache/assets/sprockets/v3.0/CK/cKrXK4-L-r89QZLZ_EUSHgo5dyY3S4O4d2ZhdtH8CtY.cache new file mode 100644 index 000000000..567e50a0f Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/CK/cKrXK4-L-r89QZLZ_EUSHgo5dyY3S4O4d2ZhdtH8CtY.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/CM/CM06-vz3jOKLGiA4MzT-vJSRHlALAv4jPZUmgLb6pns.cache b/tmp/cache/assets/sprockets/v3.0/CM/CM06-vz3jOKLGiA4MzT-vJSRHlALAv4jPZUmgLb6pns.cache new file mode 100644 index 000000000..440bb33cf Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/CM/CM06-vz3jOKLGiA4MzT-vJSRHlALAv4jPZUmgLb6pns.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/CS/CSJZ_QHRYoZLaUKnP5m4A-AdogYd6RuZc6VB45sytQA.cache b/tmp/cache/assets/sprockets/v3.0/CS/CSJZ_QHRYoZLaUKnP5m4A-AdogYd6RuZc6VB45sytQA.cache new file mode 100644 index 000000000..4c4a65c9f Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/CS/CSJZ_QHRYoZLaUKnP5m4A-AdogYd6RuZc6VB45sytQA.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/CS/CsAf2UiZlncq94fpJFv2XI8z7q0ezZhrSfb7TJWesa8.cache b/tmp/cache/assets/sprockets/v3.0/CS/CsAf2UiZlncq94fpJFv2XI8z7q0ezZhrSfb7TJWesa8.cache new file mode 100644 index 000000000..440bb33cf Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/CS/CsAf2UiZlncq94fpJFv2XI8z7q0ezZhrSfb7TJWesa8.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/CW/CWLnLdZ8steAqgm3uXUGqlvDsS2HglwLU8v8hc81wuU.cache b/tmp/cache/assets/sprockets/v3.0/CW/CWLnLdZ8steAqgm3uXUGqlvDsS2HglwLU8v8hc81wuU.cache new file mode 100644 index 000000000..378fc4dd9 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/CW/CWLnLdZ8steAqgm3uXUGqlvDsS2HglwLU8v8hc81wuU.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/CY/CYtlcZ1VJMJ0GWIXx9bajtTVlJJpC9I3UbKEhSL2CoI.cache b/tmp/cache/assets/sprockets/v3.0/CY/CYtlcZ1VJMJ0GWIXx9bajtTVlJJpC9I3UbKEhSL2CoI.cache new file mode 100644 index 000000000..b9a6b403d Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/CY/CYtlcZ1VJMJ0GWIXx9bajtTVlJJpC9I3UbKEhSL2CoI.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/Cb/CbWDPPWvTQGX5W3uO4asJ86aalPI1zeALrb6uRHvQrU.cache b/tmp/cache/assets/sprockets/v3.0/Cb/CbWDPPWvTQGX5W3uO4asJ86aalPI1zeALrb6uRHvQrU.cache new file mode 100644 index 000000000..7e3454b16 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/Cb/CbWDPPWvTQGX5W3uO4asJ86aalPI1zeALrb6uRHvQrU.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/Cf/CfynNEfCHUW3pnMNB22UlNgKvg4Jtc03G1nHNUSJMLY.cache b/tmp/cache/assets/sprockets/v3.0/Cf/CfynNEfCHUW3pnMNB22UlNgKvg4Jtc03G1nHNUSJMLY.cache new file mode 100644 index 000000000..b3df196a3 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/Cf/CfynNEfCHUW3pnMNB22UlNgKvg4Jtc03G1nHNUSJMLY.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/Cg/CgG8fhhxThhnFNhpuygnHYdajpyUF-wD2PvzdbE6QxQ.cache b/tmp/cache/assets/sprockets/v3.0/Cg/CgG8fhhxThhnFNhpuygnHYdajpyUF-wD2PvzdbE6QxQ.cache new file mode 100644 index 000000000..4c764e578 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/Cg/CgG8fhhxThhnFNhpuygnHYdajpyUF-wD2PvzdbE6QxQ.cache @@ -0,0 +1 @@ +"%5Ò¸p`¦Áª±ø¼”ëRWá+‰ç|¦k· tÛÇ5’ \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Ct/CtosOsrox9sJnJVyyeaO3T_C86ozNKnygu6JOzYcIZc.cache b/tmp/cache/assets/sprockets/v3.0/Ct/CtosOsrox9sJnJVyyeaO3T_C86ozNKnygu6JOzYcIZc.cache new file mode 100644 index 000000000..6ed13f930 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/Ct/CtosOsrox9sJnJVyyeaO3T_C86ozNKnygu6JOzYcIZc.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/Ct/Ctra8JYJZDkBU3cc-7-1keo4swtOqtba0hMsKZQVPSk.cache b/tmp/cache/assets/sprockets/v3.0/Ct/Ctra8JYJZDkBU3cc-7-1keo4swtOqtba0hMsKZQVPSk.cache new file mode 100644 index 000000000..04716e856 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/Ct/Ctra8JYJZDkBU3cc-7-1keo4swtOqtba0hMsKZQVPSk.cache @@ -0,0 +1 @@ +"%ûmTRN@Ùh[NÆ=ü¼{GKtÑ» Q È')}0 \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Cx/CxDPYmRiT1ihpzWGiP9Y-C5fNVGuGtZT5OE0OdV_GME.cache b/tmp/cache/assets/sprockets/v3.0/Cx/CxDPYmRiT1ihpzWGiP9Y-C5fNVGuGtZT5OE0OdV_GME.cache new file mode 100644 index 000000000..fb06db7ca Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/Cx/CxDPYmRiT1ihpzWGiP9Y-C5fNVGuGtZT5OE0OdV_GME.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/D-/D-k-1fqJnjKg56_7XwmUtUcve1sDPcQSnAyarmAmGvw.cache b/tmp/cache/assets/sprockets/v3.0/D-/D-k-1fqJnjKg56_7XwmUtUcve1sDPcQSnAyarmAmGvw.cache new file mode 100644 index 000000000..f3a3e5598 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/D-/D-k-1fqJnjKg56_7XwmUtUcve1sDPcQSnAyarmAmGvw.cache @@ -0,0 +1,2 @@ +"%ˆEÜrŽZ–ÍJM=Ö½ek +õrX’ËŠ@ÓKÒž$„ñ^ \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/D3/D3GyljRlkeAiDWErlajxP29rVYDlVW3ViqGheTbR56A.cache b/tmp/cache/assets/sprockets/v3.0/D3/D3GyljRlkeAiDWErlajxP29rVYDlVW3ViqGheTbR56A.cache new file mode 100644 index 000000000..d34eaadc8 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/D3/D3GyljRlkeAiDWErlajxP29rVYDlVW3ViqGheTbR56A.cache @@ -0,0 +1 @@ +I"‡app/assets/stylesheets/application.scss?type=text/css&pipeline=self&id=20102813793eb084bbb7f2b7d8ee2c909fb755bdb279b6743a200cd0eba76ec7:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/DN/DNdBhKcLTHknLUvaYKLh6cn1Xd6dj77PmARU2V3RXUA.cache b/tmp/cache/assets/sprockets/v3.0/DN/DNdBhKcLTHknLUvaYKLh6cn1Xd6dj77PmARU2V3RXUA.cache new file mode 100644 index 000000000..efa43f9c9 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/DN/DNdBhKcLTHknLUvaYKLh6cn1Xd6dj77PmARU2V3RXUA.cache @@ -0,0 +1 @@ +I"‡app/assets/stylesheets/application.scss?type=text/css&pipeline=self&id=af2cff17f03f29e9682b9cb5bd83d1f2b502cfa0f2d608ac9d6c93cad2e46e6d:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/DX/DXWSECEcNGrcWRL5MDa9x6eQdStIoSBM6_o5kI7fc6I.cache b/tmp/cache/assets/sprockets/v3.0/DX/DXWSECEcNGrcWRL5MDa9x6eQdStIoSBM6_o5kI7fc6I.cache new file mode 100644 index 000000000..440bb33cf Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/DX/DXWSECEcNGrcWRL5MDa9x6eQdStIoSBM6_o5kI7fc6I.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/Do/DoZXVFRdHHgo47JQcBsfA9BDAFxgR_bDbXGaK-D3vgQ.cache b/tmp/cache/assets/sprockets/v3.0/Do/DoZXVFRdHHgo47JQcBsfA9BDAFxgR_bDbXGaK-D3vgQ.cache new file mode 100644 index 000000000..a941bd4e9 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/Do/DoZXVFRdHHgo47JQcBsfA9BDAFxgR_bDbXGaK-D3vgQ.cache @@ -0,0 +1 @@ +I"”app/assets/javascripts/application.js?type=application/javascript&pipeline=debug&id=57c44863ca05420fcf2eed6e46c17f0c993c3511f17eb84918d0d13fcd82993c:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Dv/Dvti8RGXg4C39E8jDXWrji7U6mL5P-2A0YDrnSHNSvg.cache b/tmp/cache/assets/sprockets/v3.0/Dv/Dvti8RGXg4C39E8jDXWrji7U6mL5P-2A0YDrnSHNSvg.cache new file mode 100644 index 000000000..b745a225f Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/Dv/Dvti8RGXg4C39E8jDXWrji7U6mL5P-2A0YDrnSHNSvg.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/E-/E-pakAY7zzwcDpYgquh7Ze0k_6rX3Dm9ZbH3wmKZlX8.cache b/tmp/cache/assets/sprockets/v3.0/E-/E-pakAY7zzwcDpYgquh7Ze0k_6rX3Dm9ZbH3wmKZlX8.cache new file mode 100644 index 000000000..6ed13f930 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/E-/E-pakAY7zzwcDpYgquh7Ze0k_6rX3Dm9ZbH3wmKZlX8.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/E0/E01OaI_3w7frnsyCTeEtMHIR-4naQgdBpWe8tfOo9ng.cache b/tmp/cache/assets/sprockets/v3.0/E0/E01OaI_3w7frnsyCTeEtMHIR-4naQgdBpWe8tfOo9ng.cache new file mode 100644 index 000000000..e38c7238d Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/E0/E01OaI_3w7frnsyCTeEtMHIR-4naQgdBpWe8tfOo9ng.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/E6/E6YyF6H6G38EjPU_W6vy9BA6Gw8bcv6F1ofkvIsbUr8.cache b/tmp/cache/assets/sprockets/v3.0/E6/E6YyF6H6G38EjPU_W6vy9BA6Gw8bcv6F1ofkvIsbUr8.cache new file mode 100644 index 000000000..ff2330035 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/E6/E6YyF6H6G38EjPU_W6vy9BA6Gw8bcv6F1ofkvIsbUr8.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/E8/E8csT1VpOgFUimGYN8nsqGyyVqWvfLJTQBxfdHiZyB8.cache b/tmp/cache/assets/sprockets/v3.0/E8/E8csT1VpOgFUimGYN8nsqGyyVqWvfLJTQBxfdHiZyB8.cache new file mode 100644 index 000000000..6679a81fc --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/E8/E8csT1VpOgFUimGYN8nsqGyyVqWvfLJTQBxfdHiZyB8.cache @@ -0,0 +1 @@ +"%~«mŒÉb»McŠ™&€ X´áfÖ0,W¹ q Ä@ÖÝØ \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/E8/e8gxa4PUt0L_y8U_77soLf_u6PX-cUq-NokXizovejY.cache b/tmp/cache/assets/sprockets/v3.0/E8/e8gxa4PUt0L_y8U_77soLf_u6PX-cUq-NokXizovejY.cache new file mode 100644 index 000000000..4d27f36ba Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/E8/e8gxa4PUt0L_y8U_77soLf_u6PX-cUq-NokXizovejY.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/E9/E9zrIF1YNlyOh1zDOhaIg7ZvuxoBfyh9g9avL_uFjp4.cache b/tmp/cache/assets/sprockets/v3.0/E9/E9zrIF1YNlyOh1zDOhaIg7ZvuxoBfyh9g9avL_uFjp4.cache new file mode 100644 index 000000000..aae869bd5 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/E9/E9zrIF1YNlyOh1zDOhaIg7ZvuxoBfyh9g9avL_uFjp4.cache @@ -0,0 +1 @@ +"%RT¨ä²6U¯x}¢Pëk‘æOI—ÖöÐ/®]Çb/*A \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/EI/EIZNHl9JLJ-4SvSm88wH1kz2JSONKAoDXhOrOrIMSAo.cache b/tmp/cache/assets/sprockets/v3.0/EI/EIZNHl9JLJ-4SvSm88wH1kz2JSONKAoDXhOrOrIMSAo.cache new file mode 100644 index 000000000..d405859fa --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/EI/EIZNHl9JLJ-4SvSm88wH1kz2JSONKAoDXhOrOrIMSAo.cache @@ -0,0 +1 @@ +"%at¨Òûϋɔ™Wf8éql°9Ï)úüÜ#QÅ \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/EI/eI7tRO2QdogPxcdz7zwcw3fqF9KvFPhy7bwcPnNKXWc.cache b/tmp/cache/assets/sprockets/v3.0/EI/eI7tRO2QdogPxcdz7zwcw3fqF9KvFPhy7bwcPnNKXWc.cache new file mode 100644 index 000000000..5aceeac3e --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/EI/eI7tRO2QdogPxcdz7zwcw3fqF9KvFPhy7bwcPnNKXWc.cache @@ -0,0 +1 @@ +"%OW"àææhÒ”ÿ†¼cZIì#=¿{Ë4]KבB°Í \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/EO/EOhXkCaNRqli92vjDsNuyWhCqKg31H4zr3LrR8l74a0.cache b/tmp/cache/assets/sprockets/v3.0/EO/EOhXkCaNRqli92vjDsNuyWhCqKg31H4zr3LrR8l74a0.cache new file mode 100644 index 000000000..d0b421dcd --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/EO/EOhXkCaNRqli92vjDsNuyWhCqKg31H4zr3LrR8l74a0.cache @@ -0,0 +1 @@ +"%![åé£aóÇšn 4=žDZZ`â ì&l~ð)HÈ \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/EO/EovGgzZ5O7-rhfbuP45-WUBWGVZ-zos4kEWcdWwISvs.cache b/tmp/cache/assets/sprockets/v3.0/EO/EovGgzZ5O7-rhfbuP45-WUBWGVZ-zos4kEWcdWwISvs.cache new file mode 100644 index 000000000..9b74881cd --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/EO/EovGgzZ5O7-rhfbuP45-WUBWGVZ-zos4kEWcdWwISvs.cache @@ -0,0 +1 @@ +I"‡app/assets/stylesheets/application.scss?type=text/css&pipeline=self&id=ac20b9119d4e6f01e62e9b79fa7a1884d83e6e7d5945533f52d080558df82d74:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/EW/EW0COz545YUkftdXk1ESY3bSQa-tv_DETvh01oEjolQ.cache b/tmp/cache/assets/sprockets/v3.0/EW/EW0COz545YUkftdXk1ESY3bSQa-tv_DETvh01oEjolQ.cache new file mode 100644 index 000000000..2dc45eb2b --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/EW/EW0COz545YUkftdXk1ESY3bSQa-tv_DETvh01oEjolQ.cache @@ -0,0 +1 @@ +I"‡app/assets/stylesheets/application.scss?type=text/css&pipeline=self&id=eabddb6bacf8e154729be713f46b53ec00552112c4aa606ef560e42e53400d18:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/EW/EwUCR7tUkWSh8S_NCc1hhcQWF-K7lW_uaV__8gZCCcg.cache b/tmp/cache/assets/sprockets/v3.0/EW/EwUCR7tUkWSh8S_NCc1hhcQWF-K7lW_uaV__8gZCCcg.cache new file mode 100644 index 000000000..285d4a69e Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/EW/EwUCR7tUkWSh8S_NCc1hhcQWF-K7lW_uaV__8gZCCcg.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/E_/E_ETwrUnX4loEfq9JBjGZenblJ9VzyLWSRhHgYriiak.cache b/tmp/cache/assets/sprockets/v3.0/E_/E_ETwrUnX4loEfq9JBjGZenblJ9VzyLWSRhHgYriiak.cache new file mode 100644 index 000000000..475fc97bc Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/E_/E_ETwrUnX4loEfq9JBjGZenblJ9VzyLWSRhHgYriiak.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/Ef/EfeJ7kpiA6DWTrKkZCZ0nltbQw95o77OTO0llU-ckIY.cache b/tmp/cache/assets/sprockets/v3.0/Ef/EfeJ7kpiA6DWTrKkZCZ0nltbQw95o77OTO0llU-ckIY.cache new file mode 100644 index 000000000..2800ad3b2 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/Ef/EfeJ7kpiA6DWTrKkZCZ0nltbQw95o77OTO0llU-ckIY.cache @@ -0,0 +1 @@ +"%ã°ÄB˜üšûôÈ™o¹$'®Aäd›“L¤•™xR¸U \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/El/Elai4yOqoIg3fWZyWbtQMUGY5TvrplJavCw9J_HwNdk.cache b/tmp/cache/assets/sprockets/v3.0/El/Elai4yOqoIg3fWZyWbtQMUGY5TvrplJavCw9J_HwNdk.cache new file mode 100644 index 000000000..dc38f8a07 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/El/Elai4yOqoIg3fWZyWbtQMUGY5TvrplJavCw9J_HwNdk.cache @@ -0,0 +1 @@ +"%oƒ“£âöÝmÁàê’ˆ_5nbÏ/¤“ˆ”E`ÔvDQ \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Er/Ern8QMlAvTQErhxmdhv1i3oQ6iHZ3mQ3KtBqUQHaU8A.cache b/tmp/cache/assets/sprockets/v3.0/Er/Ern8QMlAvTQErhxmdhv1i3oQ6iHZ3mQ3KtBqUQHaU8A.cache new file mode 100644 index 000000000..e7b37ac7e Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/Er/Ern8QMlAvTQErhxmdhv1i3oQ6iHZ3mQ3KtBqUQHaU8A.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/Ex/ExJcXbofq1VZheIghDDckCJ1ODN4wwHkl8XES1Sl_14.cache b/tmp/cache/assets/sprockets/v3.0/Ex/ExJcXbofq1VZheIghDDckCJ1ODN4wwHkl8XES1Sl_14.cache new file mode 100644 index 000000000..0efbffbb6 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/Ex/ExJcXbofq1VZheIghDDckCJ1ODN4wwHkl8XES1Sl_14.cache @@ -0,0 +1,2 @@ +"%ê’¼1Ó¹E£yêQÔ“‹$ÛÍëú9ãÁd +è(e¿T \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/F-/F-dUXDpWHmOEPEZm8YwMmxR4BYApJFOrp3i6aKub0p4.cache b/tmp/cache/assets/sprockets/v3.0/F-/F-dUXDpWHmOEPEZm8YwMmxR4BYApJFOrp3i6aKub0p4.cache new file mode 100644 index 000000000..5ed773643 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/F-/F-dUXDpWHmOEPEZm8YwMmxR4BYApJFOrp3i6aKub0p4.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/F-/F-uhd8jZ8KCgkB1zLt2kjPo6ixC16MiuDYtQ4jDbhGc.cache b/tmp/cache/assets/sprockets/v3.0/F-/F-uhd8jZ8KCgkB1zLt2kjPo6ixC16MiuDYtQ4jDbhGc.cache new file mode 100644 index 000000000..59df20bc3 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/F-/F-uhd8jZ8KCgkB1zLt2kjPo6ixC16MiuDYtQ4jDbhGc.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/F4/F4tnyvnk2S8UHlYD58GetKDErczC30KO79stBrl-zZM.cache b/tmp/cache/assets/sprockets/v3.0/F4/F4tnyvnk2S8UHlYD58GetKDErczC30KO79stBrl-zZM.cache new file mode 100644 index 000000000..c36a1ffb3 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/F4/F4tnyvnk2S8UHlYD58GetKDErczC30KO79stBrl-zZM.cache @@ -0,0 +1 @@ +"%kvçó²½eÁ­íyy„P=Gÿ!M§²5¾·CdÃ? \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/F5/F5N1FF6XqNgdL4hJ_MOHGrACBPWbi7mxCK73YKSVQiw.cache b/tmp/cache/assets/sprockets/v3.0/F5/F5N1FF6XqNgdL4hJ_MOHGrACBPWbi7mxCK73YKSVQiw.cache new file mode 100644 index 000000000..e26e8043b --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/F5/F5N1FF6XqNgdL4hJ_MOHGrACBPWbi7mxCK73YKSVQiw.cache @@ -0,0 +1 @@ +"%·dI;2î™ ¿x¡ÌÕ ZcœøKnRô>)ßG7Ï \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/F8/F8_Clsc3-ngVNs2NEHPgtfT_gByaXG6eWV-B3z8zpKs.cache b/tmp/cache/assets/sprockets/v3.0/F8/F8_Clsc3-ngVNs2NEHPgtfT_gByaXG6eWV-B3z8zpKs.cache new file mode 100644 index 000000000..46f90c991 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/F8/F8_Clsc3-ngVNs2NEHPgtfT_gByaXG6eWV-B3z8zpKs.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/FD/FDyX2gHdTCa9T-LpJlBrPmlYsnjjegnbfZS8tMknFv8.cache b/tmp/cache/assets/sprockets/v3.0/FD/FDyX2gHdTCa9T-LpJlBrPmlYsnjjegnbfZS8tMknFv8.cache new file mode 100644 index 000000000..96f8961ef --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/FD/FDyX2gHdTCa9T-LpJlBrPmlYsnjjegnbfZS8tMknFv8.cache @@ -0,0 +1 @@ +I"ˆapp/assets/stylesheets/application.scss?type=text/css&pipeline=debug&id=b64e84f654831a214eeeb49a3e7c3fabac82ed2fe34c8a5d601c1ad7287480da:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Ff/FFvb0QWxKdz16ga6FYIyn9IjiWfUR0ySvYErpdEqc8k.cache b/tmp/cache/assets/sprockets/v3.0/Ff/FFvb0QWxKdz16ga6FYIyn9IjiWfUR0ySvYErpdEqc8k.cache new file mode 100644 index 000000000..6a4f02026 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/Ff/FFvb0QWxKdz16ga6FYIyn9IjiWfUR0ySvYErpdEqc8k.cache @@ -0,0 +1,2 @@ +"%2iÕ8P¯Þ­™é]`§Äƒ(`Û2·R$ rC” +ÖÈ \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Ff/FfFB35vJji26Lp77W2d90mwJletXnLTBFbxkty9fDpM.cache b/tmp/cache/assets/sprockets/v3.0/Ff/FfFB35vJji26Lp77W2d90mwJletXnLTBFbxkty9fDpM.cache new file mode 100644 index 000000000..92042a3f8 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/Ff/FfFB35vJji26Lp77W2d90mwJletXnLTBFbxkty9fDpM.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/Ff/FfoKbO4I-9QtbVaUd9D6lknb27LyTI33__LbBoFbxTo.cache b/tmp/cache/assets/sprockets/v3.0/Ff/FfoKbO4I-9QtbVaUd9D6lknb27LyTI33__LbBoFbxTo.cache new file mode 100644 index 000000000..9c72fe882 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/Ff/FfoKbO4I-9QtbVaUd9D6lknb27LyTI33__LbBoFbxTo.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/Ff/ffxQTMMW39RuzImRa6aF0ZJEB7tEMhosiOeAXznsqjI.cache b/tmp/cache/assets/sprockets/v3.0/Ff/ffxQTMMW39RuzImRa6aF0ZJEB7tEMhosiOeAXznsqjI.cache new file mode 100644 index 000000000..440bb33cf Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/Ff/ffxQTMMW39RuzImRa6aF0ZJEB7tEMhosiOeAXznsqjI.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/Fj/Fjtdf85qtFrGZAigpRMjQEN5ra8yNZq4Z6V1BS7RyJ4.cache b/tmp/cache/assets/sprockets/v3.0/Fj/Fjtdf85qtFrGZAigpRMjQEN5ra8yNZq4Z6V1BS7RyJ4.cache new file mode 100644 index 000000000..cb5c38604 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/Fj/Fjtdf85qtFrGZAigpRMjQEN5ra8yNZq4Z6V1BS7RyJ4.cache @@ -0,0 +1 @@ +"%Uœ‡¬+öN¢¾C- {B6Á§}׉…²>0ÅýÖt¯ \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Fj/fjLczzEcVGLb3tBCu7luGQD7OTgA5PQW7S_G1tnxmIc.cache b/tmp/cache/assets/sprockets/v3.0/Fj/fjLczzEcVGLb3tBCu7luGQD7OTgA5PQW7S_G1tnxmIc.cache new file mode 100644 index 000000000..adc51e53f Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/Fj/fjLczzEcVGLb3tBCu7luGQD7OTgA5PQW7S_G1tnxmIc.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/Fp/FpYMuSjEpQg-3RvH4_t-785Ss8LF3i7U0-LII2W1x0Q.cache b/tmp/cache/assets/sprockets/v3.0/Fp/FpYMuSjEpQg-3RvH4_t-785Ss8LF3i7U0-LII2W1x0Q.cache new file mode 100644 index 000000000..fcea792c6 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/Fp/FpYMuSjEpQg-3RvH4_t-785Ss8LF3i7U0-LII2W1x0Q.cache @@ -0,0 +1 @@ +I"Ô/Users/kjfitzpatrick/.rvm/gems/ruby-2.5.1/gems/bootstrap-4.1.3/assets/javascripts/bootstrap/tooltip.js?type=application/javascript&pipeline=self&id=b5466c367907759293529db7bbfa9071c19b4c6cdc7d121e44f142ddf6e63d81:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Fp/fPx82cGGQG6OlECCTsrby921IXXL3MPBYg_z3XF-nVk.cache b/tmp/cache/assets/sprockets/v3.0/Fp/fPx82cGGQG6OlECCTsrby921IXXL3MPBYg_z3XF-nVk.cache new file mode 100644 index 000000000..a0639a254 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/Fp/fPx82cGGQG6OlECCTsrby921IXXL3MPBYg_z3XF-nVk.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/Ft/FtGONIlY9CnkADWYiT_4NCE9498EzzCocnp_snT_g9s.cache b/tmp/cache/assets/sprockets/v3.0/Ft/FtGONIlY9CnkADWYiT_4NCE9498EzzCocnp_snT_g9s.cache new file mode 100644 index 000000000..b9e0d523e --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/Ft/FtGONIlY9CnkADWYiT_4NCE9498EzzCocnp_snT_g9s.cache @@ -0,0 +1 @@ +"%#jmP§Ë"‡ËµÌëyKwÇãÿ$‘ŸŒðVþ3 \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Fw/FWlWm1iaVS1plHlJrdjq-i-ydU_P5TIC7wztaNSF_s0.cache b/tmp/cache/assets/sprockets/v3.0/Fw/FWlWm1iaVS1plHlJrdjq-i-ydU_P5TIC7wztaNSF_s0.cache new file mode 100644 index 000000000..cb0ee1a01 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/Fw/FWlWm1iaVS1plHlJrdjq-i-ydU_P5TIC7wztaNSF_s0.cache @@ -0,0 +1 @@ +I"‡app/assets/stylesheets/application.scss?type=text/css&pipeline=self&id=1f19f46123fc8efe43d077121c68f104f11d7031617de6bd73a86cafe1b6a7f8:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Fw/FwxHEE8FZ7z3rtHa5i9ADsJwel6ozzmznKUgUYfG6wE.cache b/tmp/cache/assets/sprockets/v3.0/Fw/FwxHEE8FZ7z3rtHa5i9ADsJwel6ozzmznKUgUYfG6wE.cache new file mode 100644 index 000000000..8509371f3 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/Fw/FwxHEE8FZ7z3rtHa5i9ADsJwel6ozzmznKUgUYfG6wE.cache @@ -0,0 +1 @@ +I"‡app/assets/stylesheets/application.scss?type=text/css&pipeline=self&id=93527ad008465497495f734473344073b535035d099e5d951d0475fe8fb38bd4:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Fz/FzZLdMMLL2J8dJR2TUold1zvzv-3rtaAAes5EJ0TIHU.cache b/tmp/cache/assets/sprockets/v3.0/Fz/FzZLdMMLL2J8dJR2TUold1zvzv-3rtaAAes5EJ0TIHU.cache new file mode 100644 index 000000000..16d3d01ec Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/Fz/FzZLdMMLL2J8dJR2TUold1zvzv-3rtaAAes5EJ0TIHU.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/G1/G15bS8SJ-ZXnJqUEv_F5rfSSMCBr506LRU5SIdO4dlo.cache b/tmp/cache/assets/sprockets/v3.0/G1/G15bS8SJ-ZXnJqUEv_F5rfSSMCBr506LRU5SIdO4dlo.cache new file mode 100644 index 000000000..047e97fcb Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/G1/G15bS8SJ-ZXnJqUEv_F5rfSSMCBr506LRU5SIdO4dlo.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/G6/G6u-Ha11RvXLwbOc_PplAzzkIS3uuOY2yHPkQL0gI20.cache b/tmp/cache/assets/sprockets/v3.0/G6/G6u-Ha11RvXLwbOc_PplAzzkIS3uuOY2yHPkQL0gI20.cache new file mode 100644 index 000000000..85dc18bad Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/G6/G6u-Ha11RvXLwbOc_PplAzzkIS3uuOY2yHPkQL0gI20.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/GG/GGQDStIpZU0IgLMZGiTnF8oyOWoJgy5lVQoUF6yIwRo.cache b/tmp/cache/assets/sprockets/v3.0/GG/GGQDStIpZU0IgLMZGiTnF8oyOWoJgy5lVQoUF6yIwRo.cache new file mode 100644 index 000000000..c91cba3da --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/GG/GGQDStIpZU0IgLMZGiTnF8oyOWoJgy5lVQoUF6yIwRo.cache @@ -0,0 +1 @@ +"%ÛÛ–ãssG!Bbw¸z¦ƒîkX Ù(G½Élô&¨Û \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/GU/GU_SseF8_hKKQRzIPIWhsIX0AUX4D_f6E24iIXQl_-Q.cache b/tmp/cache/assets/sprockets/v3.0/GU/GU_SseF8_hKKQRzIPIWhsIX0AUX4D_f6E24iIXQl_-Q.cache new file mode 100644 index 000000000..59f599fca --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/GU/GU_SseF8_hKKQRzIPIWhsIX0AUX4D_f6E24iIXQl_-Q.cache @@ -0,0 +1,3 @@ +[o:Set: +@hash} +I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"Zprocessors:type=application/javascript&file_type=application/javascript&pipeline=self;TTI"zfile-digest:///Users/kjfitzpatrick/.rvm/gems/ruby-2.5.1/gems/bootstrap-4.1.3/assets/javascripts/bootstrap/carousel.js;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/GY/GYcfNF2AHkgLYmJnI0uYDwGH1oRNhkkI1oVXm0rzV5c.cache b/tmp/cache/assets/sprockets/v3.0/GY/GYcfNF2AHkgLYmJnI0uYDwGH1oRNhkkI1oVXm0rzV5c.cache new file mode 100644 index 000000000..440bb33cf Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/GY/GYcfNF2AHkgLYmJnI0uYDwGH1oRNhkkI1oVXm0rzV5c.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/GY/GYpN-ShQ-Ysol5D_xOkuU8wHUAfnBtzD14n-hkDVC5I.cache b/tmp/cache/assets/sprockets/v3.0/GY/GYpN-ShQ-Ysol5D_xOkuU8wHUAfnBtzD14n-hkDVC5I.cache new file mode 100644 index 000000000..440bb33cf Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/GY/GYpN-ShQ-Ysol5D_xOkuU8wHUAfnBtzD14n-hkDVC5I.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/Gi/GiJz3LMJrmvi99NGIk9ER4MM_AC1nN8GnkRw70ZjXxY.cache b/tmp/cache/assets/sprockets/v3.0/Gi/GiJz3LMJrmvi99NGIk9ER4MM_AC1nN8GnkRw70ZjXxY.cache new file mode 100644 index 000000000..2629e378f Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/Gi/GiJz3LMJrmvi99NGIk9ER4MM_AC1nN8GnkRw70ZjXxY.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/Gj/Gj5rA-yQnxg7e-LohD1I9f_CHf9b-b3qBtvQ1uaGtFc.cache b/tmp/cache/assets/sprockets/v3.0/Gj/Gj5rA-yQnxg7e-LohD1I9f_CHf9b-b3qBtvQ1uaGtFc.cache new file mode 100644 index 000000000..efc4d0a41 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/Gj/Gj5rA-yQnxg7e-LohD1I9f_CHf9b-b3qBtvQ1uaGtFc.cache @@ -0,0 +1,14 @@ +xÚíšÏ«$5Çdvñ°Gñ¼ÁCO³þ„y<𢰠'דàî®é©tRéÙ™Yß®++âmúÍðìîiá!š¤ný;ßTW*•Ê罇?>°‹‡ßC˜-Þÿj­h}³|úøC0[ôÖ4`B¶OhÍl1ûúÙ³§?èßs*¬ivõ »ñÈ+Ô”ÅÛ§ ß9oK ²žaïà:À.ä%ÑG+Ô°^S£ºžSwæÐŽç×m}úÞ¢{-«° +‹ß©a±ÚªA Ù'¬AøxÈUÿðPŒZOÙó®|ÇÕóÛqõ¼´ÃERʶÇ.¥ÕÃYµï²Þ9N¥†šÉuORÓß̓ ‹ZËÊ[S¶ÅÎéL,1’FãÚ©eNJC”-Ûdgb—PC\cq…¡Øt¡<[ðW~€_§]·ômSp)˜®y¤œÎ*û)·¼žGÓÛàùzVL98okÄ–4P¡âòüéòVÊî—Ú°ÙÞVJse_ÁZÐq5ï¬o¬Þ¤qlK ¹‚^ºýfþ)K0wºø‡µá*ötüUÉäªõÅÜ1Ù@ˆž’É"Q*$§Õþ|š*®»žŽ•†Ý˜ã¬\Çä«ÎN–g‘rD4Ž„]ÀØ9nB°í[õ•àM} &qª+áÆœàJOÆ4qHºÁáâ—÷‚U×¶7BÔ¾¸×›Jtý4è{õÎìjvóÓßà»Ç ½+ô®Ð»Bï +½+ô®Ð»Bï +½+ô®Ð»Bï +½+ô®Ð»Bï +½+ô®Ð»Bï +½+ô®Ð»Bï +½+ô®Ð»Bï +½+ô®Ð»Bï +½+ô®Ð»Bï +½+ô®Ð»Bï +½+ôîÿÞý§ ^>» \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Gl/GlALmQhHRMOdLL7Fhn_VUWouWEjVGdzWpdUlj4sRG44.cache b/tmp/cache/assets/sprockets/v3.0/Gl/GlALmQhHRMOdLL7Fhn_VUWouWEjVGdzWpdUlj4sRG44.cache new file mode 100644 index 000000000..c83361e38 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/Gl/GlALmQhHRMOdLL7Fhn_VUWouWEjVGdzWpdUlj4sRG44.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/Gn/GnJSyW5FNtbBcwBGwS0aJ3I-npJoLI1PN_nLx90SXV8.cache b/tmp/cache/assets/sprockets/v3.0/Gn/GnJSyW5FNtbBcwBGwS0aJ3I-npJoLI1PN_nLx90SXV8.cache new file mode 100644 index 000000000..85db8297c --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/Gn/GnJSyW5FNtbBcwBGwS0aJ3I-npJoLI1PN_nLx90SXV8.cache @@ -0,0 +1 @@ +I"‡app/assets/stylesheets/application.scss?type=text/css&pipeline=self&id=647735744fd50306179061a6bc8499f8a12b38e77b7f742f8d24047ff9d22ef3:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Gs/GSg-HahQo7PAUQpwTRw0ogIpkp4EuqfJqMNDZROFdmM.cache b/tmp/cache/assets/sprockets/v3.0/Gs/GSg-HahQo7PAUQpwTRw0ogIpkp4EuqfJqMNDZROFdmM.cache new file mode 100644 index 000000000..c3474a424 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/Gs/GSg-HahQo7PAUQpwTRw0ogIpkp4EuqfJqMNDZROFdmM.cache @@ -0,0 +1 @@ +I"“app/assets/javascripts/application.js?type=application/javascript&pipeline=self&id=7588eb97a34cf48a96a4d288ce689db2c6f20bed5b56ab72f0b49af72445fc02:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Gs/GsDz-mJISNfnis4SAk8WgLLu3nIxBdmiTmrNEUmlA-E.cache b/tmp/cache/assets/sprockets/v3.0/Gs/GsDz-mJISNfnis4SAk8WgLLu3nIxBdmiTmrNEUmlA-E.cache new file mode 100644 index 000000000..aaa0d5bb1 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/Gs/GsDz-mJISNfnis4SAk8WgLLu3nIxBdmiTmrNEUmlA-E.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/Gt/GtUi1SILPpgPOv3eldiJ9xYm8Latqi8Dulge-YdYMq4.cache b/tmp/cache/assets/sprockets/v3.0/Gt/GtUi1SILPpgPOv3eldiJ9xYm8Latqi8Dulge-YdYMq4.cache new file mode 100644 index 000000000..6ed13f930 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/Gt/GtUi1SILPpgPOv3eldiJ9xYm8Latqi8Dulge-YdYMq4.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/H1/H1HkyQJaz8vs2tdeOiME-H6-rjmQWLdCOps54kkcat4.cache b/tmp/cache/assets/sprockets/v3.0/H1/H1HkyQJaz8vs2tdeOiME-H6-rjmQWLdCOps54kkcat4.cache new file mode 100644 index 000000000..3d7853d6a Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/H1/H1HkyQJaz8vs2tdeOiME-H6-rjmQWLdCOps54kkcat4.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/H5/H5dAitJRwtaoD9-8ZU2cXShqcWHHvTc3EYtZbU_qYo8.cache b/tmp/cache/assets/sprockets/v3.0/H5/H5dAitJRwtaoD9-8ZU2cXShqcWHHvTc3EYtZbU_qYo8.cache new file mode 100644 index 000000000..5d04cddc2 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/H5/H5dAitJRwtaoD9-8ZU2cXShqcWHHvTc3EYtZbU_qYo8.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/H5/h5c7OC6uTZ--txf3amSygGHwG1HFyzY8OJblUSsNpF4.cache b/tmp/cache/assets/sprockets/v3.0/H5/h5c7OC6uTZ--txf3amSygGHwG1HFyzY8OJblUSsNpF4.cache new file mode 100644 index 000000000..099164c87 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/H5/h5c7OC6uTZ--txf3amSygGHwG1HFyzY8OJblUSsNpF4.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/H9/H9Ai52Ns0vWQ6Oyfpi0DyDHHHuzjMO7EVeWQnKqYDHg.cache b/tmp/cache/assets/sprockets/v3.0/H9/H9Ai52Ns0vWQ6Oyfpi0DyDHHHuzjMO7EVeWQnKqYDHg.cache new file mode 100644 index 000000000..392d34f33 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/H9/H9Ai52Ns0vWQ6Oyfpi0DyDHHHuzjMO7EVeWQnKqYDHg.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/H9/h9CRifTJuDCCZZ5GQqPYUf0FG--7dSsn5I5Kd1h1qFo.cache b/tmp/cache/assets/sprockets/v3.0/H9/h9CRifTJuDCCZZ5GQqPYUf0FG--7dSsn5I5Kd1h1qFo.cache new file mode 100644 index 000000000..3dd002cc7 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/H9/h9CRifTJuDCCZZ5GQqPYUf0FG--7dSsn5I5Kd1h1qFo.cache @@ -0,0 +1 @@ +"%þ¸…‘üÚ)‹ÝÌy-„N• 'æ9‚ ›-£ùãàŠ0 \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/HC/HCDOUd7-S45aJ_PjVAC_Vmjyud3i1aQv4cE3t9_Z3Dw.cache b/tmp/cache/assets/sprockets/v3.0/HC/HCDOUd7-S45aJ_PjVAC_Vmjyud3i1aQv4cE3t9_Z3Dw.cache new file mode 100644 index 000000000..bde70488e Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/HC/HCDOUd7-S45aJ_PjVAC_Vmjyud3i1aQv4cE3t9_Z3Dw.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/HC/hCFhCD5bz_yVsSB9czYABYhw8TaBYbAJer19wMPEGtA.cache b/tmp/cache/assets/sprockets/v3.0/HC/hCFhCD5bz_yVsSB9czYABYhw8TaBYbAJer19wMPEGtA.cache new file mode 100644 index 000000000..b5e57a8d1 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/HC/hCFhCD5bz_yVsSB9czYABYhw8TaBYbAJer19wMPEGtA.cache @@ -0,0 +1 @@ +"%NÉ«.ò‡è™²^ çY.(uD©ø.̰Üö à!£QÛÐ \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/HL/HLwFamunP258oMfu0jbMw2mPGTjOLJgB3n61ZxpGAyE.cache b/tmp/cache/assets/sprockets/v3.0/HL/HLwFamunP258oMfu0jbMw2mPGTjOLJgB3n61ZxpGAyE.cache new file mode 100644 index 000000000..9ffb96aa8 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/HL/HLwFamunP258oMfu0jbMw2mPGTjOLJgB3n61ZxpGAyE.cache @@ -0,0 +1 @@ +"%w1WJ%ŠüÝ¥{¡GœŸwôÅÖacºS³ ŒQÐ \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/HL/hLJR_A6kh_PoElEQRIyh0Yw8Fq0uAsmEFc2tQ8l6gag.cache b/tmp/cache/assets/sprockets/v3.0/HL/hLJR_A6kh_PoElEQRIyh0Yw8Fq0uAsmEFc2tQ8l6gag.cache new file mode 100644 index 000000000..81b1e4044 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/HL/hLJR_A6kh_PoElEQRIyh0Yw8Fq0uAsmEFc2tQ8l6gag.cache @@ -0,0 +1 @@ +I"ˆapp/assets/stylesheets/application.scss?type=text/css&pipeline=debug&id=dfd26ef283666b91b7cf112b98f899ff69d987277156741cda464903ca745227:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/HL/hl4WsToUVbVPSP0jC_smmdJwiGRC75Ghs6tQ48HEutU.cache b/tmp/cache/assets/sprockets/v3.0/HL/hl4WsToUVbVPSP0jC_smmdJwiGRC75Ghs6tQ48HEutU.cache new file mode 100644 index 000000000..b2378387a --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/HL/hl4WsToUVbVPSP0jC_smmdJwiGRC75Ghs6tQ48HEutU.cache @@ -0,0 +1 @@ +"%Xi¤Ù?. )#Î ’ ØŠ/GrYûhuÓ;Ÿˆ)%‚µ \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/HP/HPd4Nbcga9YU9ZLZwIWdndX6WsBEd5M2QDl7ALOZyIc.cache b/tmp/cache/assets/sprockets/v3.0/HP/HPd4Nbcga9YU9ZLZwIWdndX6WsBEd5M2QDl7ALOZyIc.cache new file mode 100644 index 000000000..7df629dde --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/HP/HPd4Nbcga9YU9ZLZwIWdndX6WsBEd5M2QDl7ALOZyIc.cache @@ -0,0 +1 @@ +I"‡app/assets/stylesheets/application.scss?type=text/css&pipeline=self&id=896e0c8e998c21f316ada4a97149411ee664c3fb67aced2384eec1ca4e4b312c:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/HR/HR6POfBMYzGbDEUlV2PeWrr0D-ipb9yxTf937mIaR1c.cache b/tmp/cache/assets/sprockets/v3.0/HR/HR6POfBMYzGbDEUlV2PeWrr0D-ipb9yxTf937mIaR1c.cache new file mode 100644 index 000000000..26fd3bd0b --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/HR/HR6POfBMYzGbDEUlV2PeWrr0D-ipb9yxTf937mIaR1c.cache @@ -0,0 +1 @@ +"%—¹ ‰è·°—ð9o— ‡Ÿ>ÀI÷,r56Âlœ«¬ñ£ \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/HR/HRPdCZcJI_oDPx-8EtIYrjgbvSGmLCf_c6rYgwY54po.cache b/tmp/cache/assets/sprockets/v3.0/HR/HRPdCZcJI_oDPx-8EtIYrjgbvSGmLCf_c6rYgwY54po.cache new file mode 100644 index 000000000..e65fe25b6 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/HR/HRPdCZcJI_oDPx-8EtIYrjgbvSGmLCf_c6rYgwY54po.cache @@ -0,0 +1 @@ +"%ÔZZ¹r”欷–R­m¤g?Æ éÕý¸Ñ«‹[cP \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/HR/hrI_paHNjU9jDXAiyyeXoXKas7DHhJWXu7lUzDct2F8.cache b/tmp/cache/assets/sprockets/v3.0/HR/hrI_paHNjU9jDXAiyyeXoXKas7DHhJWXu7lUzDct2F8.cache new file mode 100644 index 000000000..3081cb732 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/HR/hrI_paHNjU9jDXAiyyeXoXKas7DHhJWXu7lUzDct2F8.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/HR/hrVdsd8FVZPjzXnkXrqGXEXb_gukMM2IoNzrEInkswQ.cache b/tmp/cache/assets/sprockets/v3.0/HR/hrVdsd8FVZPjzXnkXrqGXEXb_gukMM2IoNzrEInkswQ.cache new file mode 100644 index 000000000..054fed1de Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/HR/hrVdsd8FVZPjzXnkXrqGXEXb_gukMM2IoNzrEInkswQ.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/HW/HW4cUkQCR6URBwzGSeLFBxLOjw7bIHVKmeTn66yi0vg.cache b/tmp/cache/assets/sprockets/v3.0/HW/HW4cUkQCR6URBwzGSeLFBxLOjw7bIHVKmeTn66yi0vg.cache new file mode 100644 index 000000000..db2090180 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/HW/HW4cUkQCR6URBwzGSeLFBxLOjw7bIHVKmeTn66yi0vg.cache @@ -0,0 +1,2 @@ +"%ÝŒ×üycûj~òwñô…”;jÉíпa~†PoóZX + \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/HW/hwV7t0x5nNlDY0-APCxGsn3bFstrvSOCXIW6fUOXa-g.cache b/tmp/cache/assets/sprockets/v3.0/HW/hwV7t0x5nNlDY0-APCxGsn3bFstrvSOCXIW6fUOXa-g.cache new file mode 100644 index 000000000..3a2337f6a --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/HW/hwV7t0x5nNlDY0-APCxGsn3bFstrvSOCXIW6fUOXa-g.cache @@ -0,0 +1 @@ +I"ˆapp/assets/stylesheets/application.scss?type=text/css&pipeline=debug&id=4fb954cec53b303a562626092ff4dbe9b5330068f910f2e31dee1f98f9149670:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/HW/hwlZAm5qPfqclblsnyO1Y6g8-6uyEWKEWNihKu9LsjY.cache b/tmp/cache/assets/sprockets/v3.0/HW/hwlZAm5qPfqclblsnyO1Y6g8-6uyEWKEWNihKu9LsjY.cache new file mode 100644 index 000000000..3081cb732 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/HW/hwlZAm5qPfqclblsnyO1Y6g8-6uyEWKEWNihKu9LsjY.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/HZ/HZd5CZlGvVUx5o8eNWkdNSuSRzQS4ws06-u2amrYaaw.cache b/tmp/cache/assets/sprockets/v3.0/HZ/HZd5CZlGvVUx5o8eNWkdNSuSRzQS4ws06-u2amrYaaw.cache new file mode 100644 index 000000000..b97334064 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/HZ/HZd5CZlGvVUx5o8eNWkdNSuSRzQS4ws06-u2amrYaaw.cache @@ -0,0 +1 @@ +"%eÐ<}ˆ= ¸_~KºëÈRŸÒ/ˆKŸyƒ \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Ha/HaJXL3_pOyCvmwfAAJOJD-MR2hxTXn01wKcDH_xGQ3c.cache b/tmp/cache/assets/sprockets/v3.0/Ha/HaJXL3_pOyCvmwfAAJOJD-MR2hxTXn01wKcDH_xGQ3c.cache new file mode 100644 index 000000000..23f4cd98d Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/Ha/HaJXL3_pOyCvmwfAAJOJD-MR2hxTXn01wKcDH_xGQ3c.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/Ha/hAHjBFd-D8S6sNZF7QxcgzmP6CscETu0uG3gueXRgfo.cache b/tmp/cache/assets/sprockets/v3.0/Ha/hAHjBFd-D8S6sNZF7QxcgzmP6CscETu0uG3gueXRgfo.cache new file mode 100644 index 000000000..df753d5fd --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/Ha/hAHjBFd-D8S6sNZF7QxcgzmP6CscETu0uG3gueXRgfo.cache @@ -0,0 +1 @@ +I"‡app/assets/stylesheets/application.scss?type=text/css&pipeline=self&id=f6a197e5a4ae8b86ba68f460ec1c64706bdd7ea21d519700704c37140e8d9553:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Hm/HmUQ21lKvZUU5IZB41JBr-Ca3fNSbhfuKht3Dgy_L0w.cache b/tmp/cache/assets/sprockets/v3.0/Hm/HmUQ21lKvZUU5IZB41JBr-Ca3fNSbhfuKht3Dgy_L0w.cache new file mode 100644 index 000000000..54f84f78d --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/Hm/HmUQ21lKvZUU5IZB41JBr-Ca3fNSbhfuKht3Dgy_L0w.cache @@ -0,0 +1 @@ +I"ˆapp/assets/stylesheets/application.scss?type=text/css&pipeline=debug&id=6713d859c47c110956533d5f6459f2c28ff7b474b50d0182c912230cbbf6a7b3:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Ho/Ho1n9FuoiCmuIVpFKi3IYLCO_NEjmeHb_8VZCdgtXxE.cache b/tmp/cache/assets/sprockets/v3.0/Ho/Ho1n9FuoiCmuIVpFKi3IYLCO_NEjmeHb_8VZCdgtXxE.cache new file mode 100644 index 000000000..dcca4e227 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/Ho/Ho1n9FuoiCmuIVpFKi3IYLCO_NEjmeHb_8VZCdgtXxE.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/Ho/HoMqkfvqVK9wxp3EvFG2Lon7-EdTt0I6mlX0Pu_V4mI.cache b/tmp/cache/assets/sprockets/v3.0/Ho/HoMqkfvqVK9wxp3EvFG2Lon7-EdTt0I6mlX0Pu_V4mI.cache new file mode 100644 index 000000000..549487441 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/Ho/HoMqkfvqVK9wxp3EvFG2Lon7-EdTt0I6mlX0Pu_V4mI.cache @@ -0,0 +1 @@ +"%ùSªy9-áXÔA©n/øºé$¹=|¢¬¹ú’ \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Hs/HsI6lXmco-ErERWsEnxVgu9EzcOxLMo_IcOj3Odbr1A.cache b/tmp/cache/assets/sprockets/v3.0/Hs/HsI6lXmco-ErERWsEnxVgu9EzcOxLMo_IcOj3Odbr1A.cache new file mode 100644 index 000000000..e6ba59bd3 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/Hs/HsI6lXmco-ErERWsEnxVgu9EzcOxLMo_IcOj3Odbr1A.cache @@ -0,0 +1 @@ +I"ˆapp/assets/stylesheets/application.scss?type=text/css&pipeline=debug&id=a42dba312958dc1443335dc7bdae13394d7b50f8ba76a227d3921aee073febb7:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Ht/HtyFZL9_fLoKqpzZx1awFKWXGAIW0pvxYqjHQiyknlM.cache b/tmp/cache/assets/sprockets/v3.0/Ht/HtyFZL9_fLoKqpzZx1awFKWXGAIW0pvxYqjHQiyknlM.cache new file mode 100644 index 000000000..4267d8736 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/Ht/HtyFZL9_fLoKqpzZx1awFKWXGAIW0pvxYqjHQiyknlM.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/Hx/HxnjyvQFW93W6AKyuN_w02gyBsoE4pDXAPfXAcI1HoU.cache b/tmp/cache/assets/sprockets/v3.0/Hx/HxnjyvQFW93W6AKyuN_w02gyBsoE4pDXAPfXAcI1HoU.cache new file mode 100644 index 000000000..71ceb9fea --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/Hx/HxnjyvQFW93W6AKyuN_w02gyBsoE4pDXAPfXAcI1HoU.cache @@ -0,0 +1 @@ +I"Õ/Users/kjfitzpatrick/.rvm/gems/ruby-2.5.1/gems/bootstrap-4.1.3/assets/javascripts/bootstrap/dropdown.js?type=application/javascript&pipeline=self&id=25700a41d066c723803495c7a8ee2b033702efc26ad4a04c0c0c2333c72b5d30:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/I0/I0yn5oKIu_jh57W18RwwpzPFGbv7uQWfOzY_2Mcr8oU.cache b/tmp/cache/assets/sprockets/v3.0/I0/I0yn5oKIu_jh57W18RwwpzPFGbv7uQWfOzY_2Mcr8oU.cache new file mode 100644 index 000000000..82162c89c --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/I0/I0yn5oKIu_jh57W18RwwpzPFGbv7uQWfOzY_2Mcr8oU.cache @@ -0,0 +1 @@ +I"‡app/assets/stylesheets/application.scss?type=text/css&pipeline=self&id=162b523e91d355f3e4d27a562f413e4d0419b16477c915ae0a3e3556aebc4798:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/I5/I50YISF6dHZ7ClvSkhuhvpWbMhNI9Tc_dy1Tahab29M.cache b/tmp/cache/assets/sprockets/v3.0/I5/I50YISF6dHZ7ClvSkhuhvpWbMhNI9Tc_dy1Tahab29M.cache new file mode 100644 index 000000000..5d2b2ce21 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/I5/I50YISF6dHZ7ClvSkhuhvpWbMhNI9Tc_dy1Tahab29M.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/I8/I8z_gBa62sXxZkGZm4KHIb3ctW4IL4rwJLa7kEfPpeI.cache b/tmp/cache/assets/sprockets/v3.0/I8/I8z_gBa62sXxZkGZm4KHIb3ctW4IL4rwJLa7kEfPpeI.cache new file mode 100644 index 000000000..f624a0ddb Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/I8/I8z_gBa62sXxZkGZm4KHIb3ctW4IL4rwJLa7kEfPpeI.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/IA/IAxMnUIKwN4jW90xRxphN2FQqZ5s9IL2gMGuPl3_2S0.cache b/tmp/cache/assets/sprockets/v3.0/IA/IAxMnUIKwN4jW90xRxphN2FQqZ5s9IL2gMGuPl3_2S0.cache new file mode 100644 index 000000000..c83361e38 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/IA/IAxMnUIKwN4jW90xRxphN2FQqZ5s9IL2gMGuPl3_2S0.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/IB/IBokjsNfbPdRVxISG58PU0l428WAFQKh0pKF-BRduAQ.cache b/tmp/cache/assets/sprockets/v3.0/IB/IBokjsNfbPdRVxISG58PU0l428WAFQKh0pKF-BRduAQ.cache new file mode 100644 index 000000000..68a44b370 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/IB/IBokjsNfbPdRVxISG58PU0l428WAFQKh0pKF-BRduAQ.cache @@ -0,0 +1 @@ +"%˜ærF‹p?ˆ*Âú!ºõÞÖîßñcDø\![ÏÉï3Sˆ \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/IB/Ib-xJnuW_WYoD6_kAHDU3shigl0uPVrn8fZbY-1GueA.cache b/tmp/cache/assets/sprockets/v3.0/IB/Ib-xJnuW_WYoD6_kAHDU3shigl0uPVrn8fZbY-1GueA.cache new file mode 100644 index 000000000..c83361e38 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/IB/Ib-xJnuW_WYoD6_kAHDU3shigl0uPVrn8fZbY-1GueA.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/IF/IFQRx1qJ7mqwIreWgSwIysenxiiwcmEv4aUUrUfJbas.cache b/tmp/cache/assets/sprockets/v3.0/IF/IFQRx1qJ7mqwIreWgSwIysenxiiwcmEv4aUUrUfJbas.cache new file mode 100644 index 000000000..f7510dcad --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/IF/IFQRx1qJ7mqwIreWgSwIysenxiiwcmEv4aUUrUfJbas.cache @@ -0,0 +1 @@ +I"ˆapp/assets/stylesheets/application.scss?type=text/css&pipeline=debug&id=9860a33b66f456649a67185fcd7a580ad37ce6b74a0cdddc5db641bdac48a10f:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/II/IIzCEzPohvGlWAWNFoM09zEzAXXMMN2pe7DhAYVrCoo.cache b/tmp/cache/assets/sprockets/v3.0/II/IIzCEzPohvGlWAWNFoM09zEzAXXMMN2pe7DhAYVrCoo.cache new file mode 100644 index 000000000..b7ae4e518 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/II/IIzCEzPohvGlWAWNFoM09zEzAXXMMN2pe7DhAYVrCoo.cache @@ -0,0 +1 @@ +I"ˆapp/assets/stylesheets/application.scss?type=text/css&pipeline=debug&id=bb0a72efe980b6720a080725e80c179f3e9fcb81327eb6f9d63f3558ba2e30e7:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/I_/I_DFIx__2uKB1X1SbVk9ZvFSD7ww3GIW8kWguvZ_6nk.cache b/tmp/cache/assets/sprockets/v3.0/I_/I_DFIx__2uKB1X1SbVk9ZvFSD7ww3GIW8kWguvZ_6nk.cache new file mode 100644 index 000000000..4779941d9 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/I_/I_DFIx__2uKB1X1SbVk9ZvFSD7ww3GIW8kWguvZ_6nk.cache @@ -0,0 +1 @@ +"%I¸ÎóŒÕm­èc猬‘'w ˆ‘wdt: •=*µ \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/I_/i_DptnHIsXqIFgJ_5kAx4IE7-O-rwbtHobxrM80mEh4.cache b/tmp/cache/assets/sprockets/v3.0/I_/i_DptnHIsXqIFgJ_5kAx4IE7-O-rwbtHobxrM80mEh4.cache new file mode 100644 index 000000000..4edb0423c --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/I_/i_DptnHIsXqIFgJ_5kAx4IE7-O-rwbtHobxrM80mEh4.cache @@ -0,0 +1 @@ +I"‡app/assets/stylesheets/application.scss?type=text/css&pipeline=self&id=e6fda9fdb2ab68b08d479a1b2cd125efbb228ffa8e2dfafa78f01a817b7555a6:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Ik/IkIZ-jvBxztbwj7pa66m7PGN3UVski5jBYPJD1Js3hQ.cache b/tmp/cache/assets/sprockets/v3.0/Ik/IkIZ-jvBxztbwj7pa66m7PGN3UVski5jBYPJD1Js3hQ.cache new file mode 100644 index 000000000..4147adb98 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/Ik/IkIZ-jvBxztbwj7pa66m7PGN3UVski5jBYPJD1Js3hQ.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/Im/ImDVty1G-gjpeTctrrYgf_w5JfRLK5aHshb1pfIUExs.cache b/tmp/cache/assets/sprockets/v3.0/Im/ImDVty1G-gjpeTctrrYgf_w5JfRLK5aHshb1pfIUExs.cache new file mode 100644 index 000000000..03aabefdb Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/Im/ImDVty1G-gjpeTctrrYgf_w5JfRLK5aHshb1pfIUExs.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/Io/IoLanS8Sdt8aEAQYAzafIETMd6t_3Jb6nxVjK6Xn8qU.cache b/tmp/cache/assets/sprockets/v3.0/Io/IoLanS8Sdt8aEAQYAzafIETMd6t_3Jb6nxVjK6Xn8qU.cache new file mode 100644 index 000000000..a92a94553 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/Io/IoLanS8Sdt8aEAQYAzafIETMd6t_3Jb6nxVjK6Xn8qU.cache @@ -0,0 +1 @@ +I"‡app/assets/stylesheets/application.scss?type=text/css&pipeline=self&id=b90e393f8384d77ae03bc76d53227b856c2bf0a402a1dbc4073cfc0ed4e8c51c:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Ip/Ip-BvQuuQ-2b7C4w0T3cBsb8xHGGiiqf-giD3u9majU.cache b/tmp/cache/assets/sprockets/v3.0/Ip/Ip-BvQuuQ-2b7C4w0T3cBsb8xHGGiiqf-giD3u9majU.cache new file mode 100644 index 000000000..8acd70365 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/Ip/Ip-BvQuuQ-2b7C4w0T3cBsb8xHGGiiqf-giD3u9majU.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/Ip/ipf9G37NPNmAPx0YKF_ciwwXB6sxAz_RWMsnBXbCnig.cache b/tmp/cache/assets/sprockets/v3.0/Ip/ipf9G37NPNmAPx0YKF_ciwwXB6sxAz_RWMsnBXbCnig.cache new file mode 100644 index 000000000..440bb33cf Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/Ip/ipf9G37NPNmAPx0YKF_ciwwXB6sxAz_RWMsnBXbCnig.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/Is/ISCKybgasmj86ochlzI5DfzcaJCsHyfEWon3rTnXK2g.cache b/tmp/cache/assets/sprockets/v3.0/Is/ISCKybgasmj86ochlzI5DfzcaJCsHyfEWon3rTnXK2g.cache new file mode 100644 index 000000000..3081cb732 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/Is/ISCKybgasmj86ochlzI5DfzcaJCsHyfEWon3rTnXK2g.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/Is/IsaHC6DMfKtDyka1rLpqDmLU39UxIESy4fNqQzJlRW8.cache b/tmp/cache/assets/sprockets/v3.0/Is/IsaHC6DMfKtDyka1rLpqDmLU39UxIESy4fNqQzJlRW8.cache new file mode 100644 index 000000000..05944eb67 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/Is/IsaHC6DMfKtDyka1rLpqDmLU39UxIESy4fNqQzJlRW8.cache @@ -0,0 +1,2 @@ +[o:Set: +@hash} I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"Lprocessors:type=application/javascript&file_type=application/javascript;TTI"8file-digest://app/assets/javascripts/application.js;TTI"Zprocessors:type=application/javascript&file_type=application/javascript&pipeline=self;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Is/IsreDKgllUZBC5F6KBwYGIEHgnDBMSMX0fegSgNG3Pc.cache b/tmp/cache/assets/sprockets/v3.0/Is/IsreDKgllUZBC5F6KBwYGIEHgnDBMSMX0fegSgNG3Pc.cache new file mode 100644 index 000000000..9f6c489db --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/Is/IsreDKgllUZBC5F6KBwYGIEHgnDBMSMX0fegSgNG3Pc.cache @@ -0,0 +1 @@ +"%ì+·c1l¤À߇9ùóàÎï4`L*úú‡†˜Xj \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Is/isrHeWq5JKWwFwgsLcWgnAPuyJtZjg7x2lrdM9O85i8.cache b/tmp/cache/assets/sprockets/v3.0/Is/isrHeWq5JKWwFwgsLcWgnAPuyJtZjg7x2lrdM9O85i8.cache new file mode 100644 index 000000000..782d0dd4d Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/Is/isrHeWq5JKWwFwgsLcWgnAPuyJtZjg7x2lrdM9O85i8.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/Iv/Iv1VLMmbXDi02wrILvAiZueywm4VEKviY0zcZNMWNls.cache b/tmp/cache/assets/sprockets/v3.0/Iv/Iv1VLMmbXDi02wrILvAiZueywm4VEKviY0zcZNMWNls.cache new file mode 100644 index 000000000..57655d930 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/Iv/Iv1VLMmbXDi02wrILvAiZueywm4VEKviY0zcZNMWNls.cache @@ -0,0 +1 @@ +"%;ˆÁ?pƒž|3mI¢¼º!wïHmÐ5}ªæË \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Iv/ivZmZZoeRGniO7kpntUdYVjL2tiH_Gzv-iFW-8n1iZ8.cache b/tmp/cache/assets/sprockets/v3.0/Iv/ivZmZZoeRGniO7kpntUdYVjL2tiH_Gzv-iFW-8n1iZ8.cache new file mode 100644 index 000000000..b46fd5a07 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/Iv/ivZmZZoeRGniO7kpntUdYVjL2tiH_Gzv-iFW-8n1iZ8.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/J0/J09sHz0fqLd4WmvrtQUqsdIKhGuZf0xPQug1h0lTekE.cache b/tmp/cache/assets/sprockets/v3.0/J0/J09sHz0fqLd4WmvrtQUqsdIKhGuZf0xPQug1h0lTekE.cache new file mode 100644 index 000000000..440bb33cf Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/J0/J09sHz0fqLd4WmvrtQUqsdIKhGuZf0xPQug1h0lTekE.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/J5/J5zW-4RbprFvl5pQrpjqKiXAjjXkQ9fUGPy0auHl4CA.cache b/tmp/cache/assets/sprockets/v3.0/J5/J5zW-4RbprFvl5pQrpjqKiXAjjXkQ9fUGPy0auHl4CA.cache new file mode 100644 index 000000000..6ed13f930 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/J5/J5zW-4RbprFvl5pQrpjqKiXAjjXkQ9fUGPy0auHl4CA.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/JB/JB_5M8Xtk7fBQu-Qh2b7jFKLVbeyB8NxYY0kWbzJYAI.cache b/tmp/cache/assets/sprockets/v3.0/JB/JB_5M8Xtk7fBQu-Qh2b7jFKLVbeyB8NxYY0kWbzJYAI.cache new file mode 100644 index 000000000..c83361e38 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/JB/JB_5M8Xtk7fBQu-Qh2b7jFKLVbeyB8NxYY0kWbzJYAI.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/JB/JbubNw74cMghOaXMDCtFGhBjynUVnE7hmLg_tOtWAS0.cache b/tmp/cache/assets/sprockets/v3.0/JB/JbubNw74cMghOaXMDCtFGhBjynUVnE7hmLg_tOtWAS0.cache new file mode 100644 index 000000000..2b6b5c908 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/JB/JbubNw74cMghOaXMDCtFGhBjynUVnE7hmLg_tOtWAS0.cache @@ -0,0 +1 @@ +"%5æ6OŠ6R³ôxPº›ëq¼B¾,xŸînï)*Iã“ \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/JD/JDv5Z2H0k-Q2XwejsY4EQeswK-GIws6Z6MijJbRSvZ4.cache b/tmp/cache/assets/sprockets/v3.0/JD/JDv5Z2H0k-Q2XwejsY4EQeswK-GIws6Z6MijJbRSvZ4.cache new file mode 100644 index 000000000..460c4e81e --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/JD/JDv5Z2H0k-Q2XwejsY4EQeswK-GIws6Z6MijJbRSvZ4.cache @@ -0,0 +1 @@ +I"ˆapp/assets/stylesheets/application.scss?type=text/css&pipeline=debug&id=47650aee75cd8ed6fb36a29eed716281d19d9c900ba73a3eb2d657d6e633b10e:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/JJ/JJ59oTU_gf8U47syYaBWpEgYvZbeFkBHSchyqmuFTp4.cache b/tmp/cache/assets/sprockets/v3.0/JJ/JJ59oTU_gf8U47syYaBWpEgYvZbeFkBHSchyqmuFTp4.cache new file mode 100644 index 000000000..a5cb8dae1 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/JJ/JJ59oTU_gf8U47syYaBWpEgYvZbeFkBHSchyqmuFTp4.cache @@ -0,0 +1 @@ +"% µšåaxhÓõÐF´("å~C}… )‡»h¹§OöÅ \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/JJ/jJhaXUsoAGlowNzFzKP-FpqEXoogDrDjTmOM_zWzGJI.cache b/tmp/cache/assets/sprockets/v3.0/JJ/jJhaXUsoAGlowNzFzKP-FpqEXoogDrDjTmOM_zWzGJI.cache new file mode 100644 index 000000000..c5c955865 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/JJ/jJhaXUsoAGlowNzFzKP-FpqEXoogDrDjTmOM_zWzGJI.cache @@ -0,0 +1,9 @@ +xÚÍZKÓ0*ˆGÄyHÒˆ·T´ˆ H+qN*'™¦CÛšqJÛeE Ä¿ÆÙVK’æ°BÂÓ[;™Ïãñ<>ûúÍ#;¹ùührëå\ñülzrtÌÉš +ŒO–@ŒÖŒ&£WïÞÝi÷9å甹 žBVªi™*z Î⃠`ÜtQüˆ‚s0I°Ò¢g§`ú +9YðIx¤—¦Á@åBÐÇ®óø&fŽ„V<…𦼸±,‘1C~-íÒ”êZì¿Z{ßK9$t‘+/mN…Œu/é•P‡Fî%ç2 ’’lí¤32£–Aà ùdhf©’÷ìM–žýÔò["+Ë…˜"¹(ŒxÎ,+IHX‹ï Ì®ž«¢·PS6 +#ïTBÃ0îùد!Gƒ¢®:8~J, ÉŒTŸ,-¤óù¸ÕVuÉ:"AáQŠÿ ÈzÒcμ¡ï¤f~Á1°ÔÌsÛ-’bÊîo¸˜Z÷{lß&&ßÙO¥"ºšÁº'ªê/ã`CDRkZu!5+vvk0PbDõ<ÆÕCeNLEä5{[%{bC¨±¤ÜP)sþŠ:økÌи9ÕU&…`˜óˆö˜ý˜G^ƒê­'¹Ùï‘€1#€#[°XPAJÊò‡é­˜ÓϵeÓ½-”–ʾ¼µÚ£“ï¬ë¬žÅ8¶fÐRN¯öÍùv3ÿ˜Ì%€Æÿai¤HÃŽ¿L¦CÖsAbŠ]„h!$Éd”R ;­Ö`³PePHܵpÌ4¬@{t­:;@,ÿ²½¢±½¡Á°w¶‡bçVm$¸AS‚JœÊûHd¶±äÅ•Œá‹›¨åvŸ]é²êÜVàzWÔž^éK‚]; zýÜ~¥Ï \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/JN/JNkO-R6vAaTFl7oxTsPgj0HYY4b9vXR8Ce1Ucjkzj8U.cache b/tmp/cache/assets/sprockets/v3.0/JN/JNkO-R6vAaTFl7oxTsPgj0HYY4b9vXR8Ce1Ucjkzj8U.cache new file mode 100644 index 000000000..61a72f597 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/JN/JNkO-R6vAaTFl7oxTsPgj0HYY4b9vXR8Ce1Ucjkzj8U.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/JQ/JQ445tveBGgH1CEy-CTsWxdoXf6ikaXBNfPksWfW7tI.cache b/tmp/cache/assets/sprockets/v3.0/JQ/JQ445tveBGgH1CEy-CTsWxdoXf6ikaXBNfPksWfW7tI.cache new file mode 100644 index 000000000..c83361e38 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/JQ/JQ445tveBGgH1CEy-CTsWxdoXf6ikaXBNfPksWfW7tI.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/JU/JU4Re41qdjZXgXQB9Ywf7V2-iG4oBmE3WMuodA2-6JM.cache b/tmp/cache/assets/sprockets/v3.0/JU/JU4Re41qdjZXgXQB9Ywf7V2-iG4oBmE3WMuodA2-6JM.cache new file mode 100644 index 000000000..6ed13f930 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/JU/JU4Re41qdjZXgXQB9Ywf7V2-iG4oBmE3WMuodA2-6JM.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/JZ/JZOWH_TsBn3Pu6AbfzBfvJfOgavLfdxTaI426boOfjs.cache b/tmp/cache/assets/sprockets/v3.0/JZ/JZOWH_TsBn3Pu6AbfzBfvJfOgavLfdxTaI426boOfjs.cache new file mode 100644 index 000000000..578bef5bd Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/JZ/JZOWH_TsBn3Pu6AbfzBfvJfOgavLfdxTaI426boOfjs.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/Ja/Ja_GdLzVjXLdHUmLAWHucG_EvlygGqeG9yumlHaVF88.cache b/tmp/cache/assets/sprockets/v3.0/Ja/Ja_GdLzVjXLdHUmLAWHucG_EvlygGqeG9yumlHaVF88.cache new file mode 100644 index 000000000..c2fa1bdb1 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/Ja/Ja_GdLzVjXLdHUmLAWHucG_EvlygGqeG9yumlHaVF88.cache @@ -0,0 +1 @@ +"%?Ó7E+J”\ïû˜bSë2S°iôŒp}•Åôb ª \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Je/Je1g0vxHSjYbRd1t_hNVfv4zCP3Hhf8yRIFWWTVCRlI.cache b/tmp/cache/assets/sprockets/v3.0/Je/Je1g0vxHSjYbRd1t_hNVfv4zCP3Hhf8yRIFWWTVCRlI.cache new file mode 100644 index 000000000..d2143da86 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/Je/Je1g0vxHSjYbRd1t_hNVfv4zCP3Hhf8yRIFWWTVCRlI.cache @@ -0,0 +1 @@ +I"app/assets/javascripts/cable.js?type=application/javascript&pipeline=self&id=320e7a91db92f0218d7e5d11cbe0c0b4da6e9348e57a7c18cfd46aebf7a2d381:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Jf/Jf-mb91Rlrv_tUD2jY_GhbHidMXQN3wsIRnLZ5dn_yY.cache b/tmp/cache/assets/sprockets/v3.0/Jf/Jf-mb91Rlrv_tUD2jY_GhbHidMXQN3wsIRnLZ5dn_yY.cache new file mode 100644 index 000000000..29881a903 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/Jf/Jf-mb91Rlrv_tUD2jY_GhbHidMXQN3wsIRnLZ5dn_yY.cache @@ -0,0 +1 @@ +"%z…-Ï)ÍgH2ÈÝ<3ìä’ Éw±˜¾OƒYDåé_ \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Jf/jFzK4wsUVLfUfQeD7f-MMPVKEaQdOOxjW8obrn6n7pk.cache b/tmp/cache/assets/sprockets/v3.0/Jf/jFzK4wsUVLfUfQeD7f-MMPVKEaQdOOxjW8obrn6n7pk.cache new file mode 100644 index 000000000..4503b3171 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/Jf/jFzK4wsUVLfUfQeD7f-MMPVKEaQdOOxjW8obrn6n7pk.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/Jg/Jg3_uK6ouEadBoRrymC1K-oK39LuCgir9Vl9FMYeHRk.cache b/tmp/cache/assets/sprockets/v3.0/Jg/Jg3_uK6ouEadBoRrymC1K-oK39LuCgir9Vl9FMYeHRk.cache new file mode 100644 index 000000000..8257acab5 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/Jg/Jg3_uK6ouEadBoRrymC1K-oK39LuCgir9Vl9FMYeHRk.cache @@ -0,0 +1 @@ +I"ˆapp/assets/stylesheets/application.scss?type=text/css&pipeline=debug&id=ba2e436f568feed2f02755171ab27fca668f4a94a3023c3c85bd8632fb85243f:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Jl/Jl7TQ0nD3YY2UGeVYONWDuveJYlylx_dhGEeicdf3TY.cache b/tmp/cache/assets/sprockets/v3.0/Jl/Jl7TQ0nD3YY2UGeVYONWDuveJYlylx_dhGEeicdf3TY.cache new file mode 100644 index 000000000..6f54cec6b Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/Jl/Jl7TQ0nD3YY2UGeVYONWDuveJYlylx_dhGEeicdf3TY.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/Jl/jlAqOeT62YfjUfrjMfxN0rB2UEZCuTW069-Al9EF9G8.cache b/tmp/cache/assets/sprockets/v3.0/Jl/jlAqOeT62YfjUfrjMfxN0rB2UEZCuTW069-Al9EF9G8.cache new file mode 100644 index 000000000..6ed13f930 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/Jl/jlAqOeT62YfjUfrjMfxN0rB2UEZCuTW069-Al9EF9G8.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/Jp/JpvVSUtns6Qiinz3iwOL7lXrpfnxX87hgp45_Zbd3hM.cache b/tmp/cache/assets/sprockets/v3.0/Jp/JpvVSUtns6Qiinz3iwOL7lXrpfnxX87hgp45_Zbd3hM.cache new file mode 100644 index 000000000..c2ff3a901 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/Jp/JpvVSUtns6Qiinz3iwOL7lXrpfnxX87hgp45_Zbd3hM.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/Jr/JrHxjZXFnrBg3KUvaoUxehzJzzQ3IDUcl1tPoClYlTQ.cache b/tmp/cache/assets/sprockets/v3.0/Jr/JrHxjZXFnrBg3KUvaoUxehzJzzQ3IDUcl1tPoClYlTQ.cache new file mode 100644 index 000000000..60f52bb85 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/Jr/JrHxjZXFnrBg3KUvaoUxehzJzzQ3IDUcl1tPoClYlTQ.cache @@ -0,0 +1 @@ +"%AÀ×G ü{h t»lŽmƒV·ÏÔNEè°ÔÎf§¹‚ \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Jr/jRc-7wmP5mHVoUCcF80VrTEDDiJqhIgqDFBTPofAqmI.cache b/tmp/cache/assets/sprockets/v3.0/Jr/jRc-7wmP5mHVoUCcF80VrTEDDiJqhIgqDFBTPofAqmI.cache new file mode 100644 index 000000000..1315f5432 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/Jr/jRc-7wmP5mHVoUCcF80VrTEDDiJqhIgqDFBTPofAqmI.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/Jv/Jvv8J_QhRZLgFm7diyy57RdkmFknn0V1dpqlxotptkU.cache b/tmp/cache/assets/sprockets/v3.0/Jv/Jvv8J_QhRZLgFm7diyy57RdkmFknn0V1dpqlxotptkU.cache new file mode 100644 index 000000000..32668a584 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/Jv/Jvv8J_QhRZLgFm7diyy57RdkmFknn0V1dpqlxotptkU.cache @@ -0,0 +1 @@ +"%Ûy0Y2{Zqœ“kÊÀ]UjQ¸^iò†P\¾îñ \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/K0/K0a8gYzFrsQu3-J8QEJHJEXW_rSwvZXW7aJNV52V9Gg.cache b/tmp/cache/assets/sprockets/v3.0/K0/K0a8gYzFrsQu3-J8QEJHJEXW_rSwvZXW7aJNV52V9Gg.cache new file mode 100644 index 000000000..aa30e320f --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/K0/K0a8gYzFrsQu3-J8QEJHJEXW_rSwvZXW7aJNV52V9Gg.cache @@ -0,0 +1 @@ +I"ˆapp/assets/stylesheets/application.scss?type=text/css&pipeline=debug&id=204ac5a80b521b750bd4e7374b1b92630870a4c6f56b33c24c81b0f0d3be43da:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/K4/K4NbNTocb9FTYd1s08aGle8u4a9cBgv6eqav2Y2Ebyg.cache b/tmp/cache/assets/sprockets/v3.0/K4/K4NbNTocb9FTYd1s08aGle8u4a9cBgv6eqav2Y2Ebyg.cache new file mode 100644 index 000000000..b5e57a8d1 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/K4/K4NbNTocb9FTYd1s08aGle8u4a9cBgv6eqav2Y2Ebyg.cache @@ -0,0 +1 @@ +"%NÉ«.ò‡è™²^ çY.(uD©ø.̰Üö à!£QÛÐ \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/KG/KGHaK_lEzlEaDGL6R3kEOb-BGTbIQRVvi7tJ1G7HOco.cache b/tmp/cache/assets/sprockets/v3.0/KG/KGHaK_lEzlEaDGL6R3kEOb-BGTbIQRVvi7tJ1G7HOco.cache new file mode 100644 index 000000000..a5ce1c056 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/KG/KGHaK_lEzlEaDGL6R3kEOb-BGTbIQRVvi7tJ1G7HOco.cache @@ -0,0 +1 @@ +"%8Äò*yÏñ]V}§í¢s÷n‡oVy§Ç5Á³ÉªDN \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Kb/KboYUWXe0qhqB88E8Aa3qefYcWi3rDqn7J8dI8xJIOU.cache b/tmp/cache/assets/sprockets/v3.0/Kb/KboYUWXe0qhqB88E8Aa3qefYcWi3rDqn7J8dI8xJIOU.cache new file mode 100644 index 000000000..a5c62e90f Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/Kb/KboYUWXe0qhqB88E8Aa3qefYcWi3rDqn7J8dI8xJIOU.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/Kb/kBhjMP-txx1S8aOQNOg7V_xoHKjnEalz98Q3XJxzx4I.cache b/tmp/cache/assets/sprockets/v3.0/Kb/kBhjMP-txx1S8aOQNOg7V_xoHKjnEalz98Q3XJxzx4I.cache new file mode 100644 index 000000000..7c118e286 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/Kb/kBhjMP-txx1S8aOQNOg7V_xoHKjnEalz98Q3XJxzx4I.cache @@ -0,0 +1 @@ +I"ˆapp/assets/stylesheets/application.scss?type=text/css&pipeline=debug&id=07abf305a6f0a3e020d3e6fc2f3f25892d0c1ff31e5b0036cdb03998280f832c:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Kh/KhKu95HR0o2t30iRLmSMjMSujzfWVlmNboWz6YB_B4o.cache b/tmp/cache/assets/sprockets/v3.0/Kh/KhKu95HR0o2t30iRLmSMjMSujzfWVlmNboWz6YB_B4o.cache new file mode 100644 index 000000000..3702ff496 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/Kh/KhKu95HR0o2t30iRLmSMjMSujzfWVlmNboWz6YB_B4o.cache @@ -0,0 +1 @@ +"%y§B«GËXÙÁ; eÓ÷ 4Æ–¸[–9¬9Lc\â \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Kk/KK-UZDtVU6x2oqrjQ9ACO2gjsUxdfcgy4eXBK2vCQUs.cache b/tmp/cache/assets/sprockets/v3.0/Kk/KK-UZDtVU6x2oqrjQ9ACO2gjsUxdfcgy4eXBK2vCQUs.cache new file mode 100644 index 000000000..c83361e38 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/Kk/KK-UZDtVU6x2oqrjQ9ACO2gjsUxdfcgy4eXBK2vCQUs.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/Kk/KkYdGeb_kdIwQlcWYs3MqE3DifzPXeGaaozv62P7Iiw.cache b/tmp/cache/assets/sprockets/v3.0/Kk/KkYdGeb_kdIwQlcWYs3MqE3DifzPXeGaaozv62P7Iiw.cache new file mode 100644 index 000000000..3081cb732 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/Kk/KkYdGeb_kdIwQlcWYs3MqE3DifzPXeGaaozv62P7Iiw.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/Km/KmeFoO4Hger7MvdzgrBIneukmA0SphC6MWJmwtCFCBQ.cache b/tmp/cache/assets/sprockets/v3.0/Km/KmeFoO4Hger7MvdzgrBIneukmA0SphC6MWJmwtCFCBQ.cache new file mode 100644 index 000000000..2de5fe739 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/Km/KmeFoO4Hger7MvdzgrBIneukmA0SphC6MWJmwtCFCBQ.cache @@ -0,0 +1 @@ +I"‡app/assets/stylesheets/application.scss?type=text/css&pipeline=self&id=1b6345bbd166cb7b87495968fcc1f287891e5dc3eca5e1c0f634fbf05d496bed:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Ku/KuKUR6QJNiwlj-nIYWs-kq1lopl-UlezO319OwqPhBY.cache b/tmp/cache/assets/sprockets/v3.0/Ku/KuKUR6QJNiwlj-nIYWs-kq1lopl-UlezO319OwqPhBY.cache new file mode 100644 index 000000000..169a34dbb Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/Ku/KuKUR6QJNiwlj-nIYWs-kq1lopl-UlezO319OwqPhBY.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/L-/L-lDWcDVSIgLOqFbSwLj0gOxkfmwMpyBZDcOrreehoM.cache b/tmp/cache/assets/sprockets/v3.0/L-/L-lDWcDVSIgLOqFbSwLj0gOxkfmwMpyBZDcOrreehoM.cache new file mode 100644 index 000000000..3081cb732 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/L-/L-lDWcDVSIgLOqFbSwLj0gOxkfmwMpyBZDcOrreehoM.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/L4/L4gh41ft39rFPns-EayJtD2pkaqv5I8VLOkOWQm4ALY.cache b/tmp/cache/assets/sprockets/v3.0/L4/L4gh41ft39rFPns-EayJtD2pkaqv5I8VLOkOWQm4ALY.cache new file mode 100644 index 000000000..f69719ccb Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/L4/L4gh41ft39rFPns-EayJtD2pkaqv5I8VLOkOWQm4ALY.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/LF/LFYaWNjYL75rcyCeYQBV_ygLaHRWSw5dxkRpNfNddTg.cache b/tmp/cache/assets/sprockets/v3.0/LF/LFYaWNjYL75rcyCeYQBV_ygLaHRWSw5dxkRpNfNddTg.cache new file mode 100644 index 000000000..3dc95f672 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/LF/LFYaWNjYL75rcyCeYQBV_ygLaHRWSw5dxkRpNfNddTg.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/LF/lfl_YS6ucz4NAl5koOyNhSyrmr33_mZmp2RXJjk4BtI.cache b/tmp/cache/assets/sprockets/v3.0/LF/lfl_YS6ucz4NAl5koOyNhSyrmr33_mZmp2RXJjk4BtI.cache new file mode 100644 index 000000000..3081cb732 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/LF/lfl_YS6ucz4NAl5koOyNhSyrmr33_mZmp2RXJjk4BtI.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/LJ/LJbY1-_QDEXpxVPPwQiSFKus3Na_4td9VeuJAAIrRVY.cache b/tmp/cache/assets/sprockets/v3.0/LJ/LJbY1-_QDEXpxVPPwQiSFKus3Na_4td9VeuJAAIrRVY.cache new file mode 100644 index 000000000..47b9003c1 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/LJ/LJbY1-_QDEXpxVPPwQiSFKus3Na_4td9VeuJAAIrRVY.cache @@ -0,0 +1 @@ +I"‡app/assets/stylesheets/application.scss?type=text/css&pipeline=self&id=f892d6dc0b68d3c3dba59efd459bf7710bd93cfe9a216e6d847fdcbb05fac2c5:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/LJ/LjOSIuls6qD1pxg83NKBwx2i-avGfIG5-o2oVIhalIg.cache b/tmp/cache/assets/sprockets/v3.0/LJ/LjOSIuls6qD1pxg83NKBwx2i-avGfIG5-o2oVIhalIg.cache new file mode 100644 index 000000000..440bb33cf Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/LJ/LjOSIuls6qD1pxg83NKBwx2i-avGfIG5-o2oVIhalIg.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/LV/LVEAhG863PaHz2DapkQmBkjpTuSN6vX6ptIS7lUiyKM.cache b/tmp/cache/assets/sprockets/v3.0/LV/LVEAhG863PaHz2DapkQmBkjpTuSN6vX6ptIS7lUiyKM.cache new file mode 100644 index 000000000..40a178010 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/LV/LVEAhG863PaHz2DapkQmBkjpTuSN6vX6ptIS7lUiyKM.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/LV/lvh8m5v1daIstJIE_eQo3btZKoRbVE9mTW5w2vH0S8s.cache b/tmp/cache/assets/sprockets/v3.0/LV/lvh8m5v1daIstJIE_eQo3btZKoRbVE9mTW5w2vH0S8s.cache new file mode 100644 index 000000000..94b9c5c4a Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/LV/lvh8m5v1daIstJIE_eQo3btZKoRbVE9mTW5w2vH0S8s.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/M6/M6uTkNgTtcpBRJ1VPAKw2t_vF9Kr3wFDq9WIS6BUiEU.cache b/tmp/cache/assets/sprockets/v3.0/M6/M6uTkNgTtcpBRJ1VPAKw2t_vF9Kr3wFDq9WIS6BUiEU.cache new file mode 100644 index 000000000..a2b7d062f --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/M6/M6uTkNgTtcpBRJ1VPAKw2t_vF9Kr3wFDq9WIS6BUiEU.cache @@ -0,0 +1 @@ +I"ˆapp/assets/stylesheets/application.scss?type=text/css&pipeline=debug&id=84cf8379ed93bc7a018dbee369f83e9de0b8faa3ac490c30acbbfe3a9342337a:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/M7/M7bZP7c3rxXVoKv821zD0Vq49Srm1tc85hQCnfacbJI.cache b/tmp/cache/assets/sprockets/v3.0/M7/M7bZP7c3rxXVoKv821zD0Vq49Srm1tc85hQCnfacbJI.cache new file mode 100644 index 000000000..e6ec0d40c Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/M7/M7bZP7c3rxXVoKv821zD0Vq49Srm1tc85hQCnfacbJI.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/MJ/MJNY425P_mXhOD_XJn5ZJB2xMTJ3PNfXRGyvUNL_MbA.cache b/tmp/cache/assets/sprockets/v3.0/MJ/MJNY425P_mXhOD_XJn5ZJB2xMTJ3PNfXRGyvUNL_MbA.cache new file mode 100644 index 000000000..9362f3f84 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/MJ/MJNY425P_mXhOD_XJn5ZJB2xMTJ3PNfXRGyvUNL_MbA.cache @@ -0,0 +1 @@ +I"ˆapp/assets/stylesheets/application.scss?type=text/css&pipeline=debug&id=b23201df8a11f0d0833a9d3e743f4d2c0991fe5418ac378dc27987937c8d9bcf:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Mm/MmFUP-H_Z33fPP_CmLvtC3d-e_DBI00mWGAECygmjPE.cache b/tmp/cache/assets/sprockets/v3.0/Mm/MmFUP-H_Z33fPP_CmLvtC3d-e_DBI00mWGAECygmjPE.cache new file mode 100644 index 000000000..912959608 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/Mm/MmFUP-H_Z33fPP_CmLvtC3d-e_DBI00mWGAECygmjPE.cache @@ -0,0 +1,3 @@ +[o:Set: +@hash} +I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"4processors:type=image/jpeg&file_type=image/jpeg;TTI"Jfile-digest://app/assets/images/black-pepper-bright-colors-940302.jpg;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Mo/MofL6gH0rru-R8gJORNw9n2fe8qP0cDWq85MafYytGM.cache b/tmp/cache/assets/sprockets/v3.0/Mo/MofL6gH0rru-R8gJORNw9n2fe8qP0cDWq85MafYytGM.cache new file mode 100644 index 000000000..2a3319bb8 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/Mo/MofL6gH0rru-R8gJORNw9n2fe8qP0cDWq85MafYytGM.cache @@ -0,0 +1 @@ +"%.;‡Sî^K‚îÌ™GzSMÐðjÅﶺ·W6 \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Mv/MvVYkO60v1iD2u07U4zuDn_DF_qiHxcwe6FaEki4Fco.cache b/tmp/cache/assets/sprockets/v3.0/Mv/MvVYkO60v1iD2u07U4zuDn_DF_qiHxcwe6FaEki4Fco.cache new file mode 100644 index 000000000..6ed13f930 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/Mv/MvVYkO60v1iD2u07U4zuDn_DF_qiHxcwe6FaEki4Fco.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/NB/NB1Rx9G5ntLf_Cu9PW5PJ3Q3WfL9D5ZEaph2nbVPN-Q.cache b/tmp/cache/assets/sprockets/v3.0/NB/NB1Rx9G5ntLf_Cu9PW5PJ3Q3WfL9D5ZEaph2nbVPN-Q.cache new file mode 100644 index 000000000..21fc4b2b4 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/NB/NB1Rx9G5ntLf_Cu9PW5PJ3Q3WfL9D5ZEaph2nbVPN-Q.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/ND/ND7N8Nt751yg9EFdQTPa9V2G4tNcc9IMzULOOnNtwb0.cache b/tmp/cache/assets/sprockets/v3.0/ND/ND7N8Nt751yg9EFdQTPa9V2G4tNcc9IMzULOOnNtwb0.cache new file mode 100644 index 000000000..3081cb732 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/ND/ND7N8Nt751yg9EFdQTPa9V2G4tNcc9IMzULOOnNtwb0.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/ND/ND8u9GpBQSlxGk-qestUuZqxazeXDQVokiO9pNyAfpM.cache b/tmp/cache/assets/sprockets/v3.0/ND/ND8u9GpBQSlxGk-qestUuZqxazeXDQVokiO9pNyAfpM.cache new file mode 100644 index 000000000..440bb33cf Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/ND/ND8u9GpBQSlxGk-qestUuZqxazeXDQVokiO9pNyAfpM.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/NR/NRfNVFdW7H3LGg3Ayp_k83JemXqPBA6fLywHsVnlzqY.cache b/tmp/cache/assets/sprockets/v3.0/NR/NRfNVFdW7H3LGg3Ayp_k83JemXqPBA6fLywHsVnlzqY.cache new file mode 100644 index 000000000..a5339e648 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/NR/NRfNVFdW7H3LGg3Ayp_k83JemXqPBA6fLywHsVnlzqY.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/NS/NS01ljqyi4x-6wct06o7FYxWg3gUmwy91BY_En30LcA.cache b/tmp/cache/assets/sprockets/v3.0/NS/NS01ljqyi4x-6wct06o7FYxWg3gUmwy91BY_En30LcA.cache new file mode 100644 index 000000000..427662d1b --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/NS/NS01ljqyi4x-6wct06o7FYxWg3gUmwy91BY_En30LcA.cache @@ -0,0 +1 @@ +I"‡app/assets/stylesheets/application.scss?type=text/css&pipeline=self&id=95604d47a330484a8392131d9c307de8f6e101c3d7c2be7ba19f6d9e9d600f7a:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/NW/NWCZaZk1tSHkl0y-JALCePEygkQNvpbVD1sWEiiuYwA.cache b/tmp/cache/assets/sprockets/v3.0/NW/NWCZaZk1tSHkl0y-JALCePEygkQNvpbVD1sWEiiuYwA.cache new file mode 100644 index 000000000..4d2abd5fe --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/NW/NWCZaZk1tSHkl0y-JALCePEygkQNvpbVD1sWEiiuYwA.cache @@ -0,0 +1 @@ +I"ˆapp/assets/stylesheets/application.scss?type=text/css&pipeline=debug&id=4cf718df117dbe6652245bfe3ac3714b7f2538eb74ded47d14004fb603c91f9e:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/NW/NWya5p0B40hs1YGkBG0x69gJiFAcX0ou7XRMjaCSOzk.cache b/tmp/cache/assets/sprockets/v3.0/NW/NWya5p0B40hs1YGkBG0x69gJiFAcX0ou7XRMjaCSOzk.cache new file mode 100644 index 000000000..409495335 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/NW/NWya5p0B40hs1YGkBG0x69gJiFAcX0ou7XRMjaCSOzk.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/NW/nwUwDhZJbu2QkzomdTQU5zwUsRy_NxUwtb58FCHFOGc.cache b/tmp/cache/assets/sprockets/v3.0/NW/nwUwDhZJbu2QkzomdTQU5zwUsRy_NxUwtb58FCHFOGc.cache new file mode 100644 index 000000000..5cce70ef7 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/NW/nwUwDhZJbu2QkzomdTQU5zwUsRy_NxUwtb58FCHFOGc.cache @@ -0,0 +1 @@ +I"ˆapp/assets/stylesheets/application.scss?type=text/css&pipeline=debug&id=f484fd12f59ad6e9fa3a873d948a4978a26cfda8ef2f1e63f89b079266a082d7:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Nk/NKI1UcWMbjmxVDMx-3Td8WtHAz-rXzwnYIzhU_mS3RU.cache b/tmp/cache/assets/sprockets/v3.0/Nk/NKI1UcWMbjmxVDMx-3Td8WtHAz-rXzwnYIzhU_mS3RU.cache new file mode 100644 index 000000000..c83361e38 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/Nk/NKI1UcWMbjmxVDMx-3Td8WtHAz-rXzwnYIzhU_mS3RU.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/Nk/NkuBeLcF48jwwOicHF2N0qe3uUpL-tvS_1jPUKh_p-0.cache b/tmp/cache/assets/sprockets/v3.0/Nk/NkuBeLcF48jwwOicHF2N0qe3uUpL-tvS_1jPUKh_p-0.cache new file mode 100644 index 000000000..cddab8b26 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/Nk/NkuBeLcF48jwwOicHF2N0qe3uUpL-tvS_1jPUKh_p-0.cache @@ -0,0 +1 @@ +"%RÁL¥áv¨ã1&c§ÿþáš7ÏšÞòÀçyÅÁcÀEw \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Nu/NuTykYOBOdWVsXUap35lJ_ZPKSW6VNeoGtfGLPHfP6I.cache b/tmp/cache/assets/sprockets/v3.0/Nu/NuTykYOBOdWVsXUap35lJ_ZPKSW6VNeoGtfGLPHfP6I.cache new file mode 100644 index 000000000..c83361e38 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/Nu/NuTykYOBOdWVsXUap35lJ_ZPKSW6VNeoGtfGLPHfP6I.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/Nu/nUtDCXUlZCTF1lx3RnW1buSzIA15SjI4KsC3a37Ncoo.cache b/tmp/cache/assets/sprockets/v3.0/Nu/nUtDCXUlZCTF1lx3RnW1buSzIA15SjI4KsC3a37Ncoo.cache new file mode 100644 index 000000000..cd18a40d9 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/Nu/nUtDCXUlZCTF1lx3RnW1buSzIA15SjI4KsC3a37Ncoo.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/Nv/Nv7YpLwEml61i4jrMt0jDeL_RLiO0ndFXvZ8snBH_cg.cache b/tmp/cache/assets/sprockets/v3.0/Nv/Nv7YpLwEml61i4jrMt0jDeL_RLiO0ndFXvZ8snBH_cg.cache new file mode 100644 index 000000000..7e31d4662 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/Nv/Nv7YpLwEml61i4jrMt0jDeL_RLiO0ndFXvZ8snBH_cg.cache @@ -0,0 +1 @@ +I"app/assets/javascripts/recipes.js?type=application/javascript&pipeline=self&id=ddbd874d315fb753bfff88c831849251052a72e83f691a0f83fdbeaa41103c14:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Ny/NyHHS6UlSqqAEYFmFN93GETbqhuEXSASyOicYqVML90.cache b/tmp/cache/assets/sprockets/v3.0/Ny/NyHHS6UlSqqAEYFmFN93GETbqhuEXSASyOicYqVML90.cache new file mode 100644 index 000000000..b33eff7c0 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/Ny/NyHHS6UlSqqAEYFmFN93GETbqhuEXSASyOicYqVML90.cache @@ -0,0 +1 @@ +I"ˆapp/assets/stylesheets/application.scss?type=text/css&pipeline=debug&id=ad32153609b9aba4b842a83e5acdca8bb719500cc10220430a244cfbb6f028fa:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Nz/NzbL8E-s1kiXGBlmBa-JTJlZagPEupGLiVK0Fgeihqo.cache b/tmp/cache/assets/sprockets/v3.0/Nz/NzbL8E-s1kiXGBlmBa-JTJlZagPEupGLiVK0Fgeihqo.cache new file mode 100644 index 000000000..b03119e7e --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/Nz/NzbL8E-s1kiXGBlmBa-JTJlZagPEupGLiVK0Fgeihqo.cache @@ -0,0 +1 @@ +I"‡app/assets/stylesheets/application.scss?type=text/css&pipeline=self&id=170a900c7a6d8e89811faacbfdaad25a7e4ae60bbb36f7f2d55600b9cdce6d9b:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/O3/O3Jov25gnNd-39FP7RSoORSj9lAirUIv6hf0naG4A2A.cache b/tmp/cache/assets/sprockets/v3.0/O3/O3Jov25gnNd-39FP7RSoORSj9lAirUIv6hf0naG4A2A.cache new file mode 100644 index 000000000..5f9042dfa --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/O3/O3Jov25gnNd-39FP7RSoORSj9lAirUIv6hf0naG4A2A.cache @@ -0,0 +1 @@ +I"‡app/assets/stylesheets/application.scss?type=text/css&pipeline=self&id=d2e7a6f409e8f71a3c38f588971e4aa9cb0ec2cf0e2e2092daf990205b391022:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/OI/OIjZChgbmvHW2mcb9AfisosGulDBJtXkjAxZonMovRo.cache b/tmp/cache/assets/sprockets/v3.0/OI/OIjZChgbmvHW2mcb9AfisosGulDBJtXkjAxZonMovRo.cache new file mode 100644 index 000000000..cd04774e3 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/OI/OIjZChgbmvHW2mcb9AfisosGulDBJtXkjAxZonMovRo.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/OK/OKGrqjTVB4pxTVerfI5xb1ZsHNDwsIa7esAaWfA0AbQ.cache b/tmp/cache/assets/sprockets/v3.0/OK/OKGrqjTVB4pxTVerfI5xb1ZsHNDwsIa7esAaWfA0AbQ.cache new file mode 100644 index 000000000..59d6bae02 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/OK/OKGrqjTVB4pxTVerfI5xb1ZsHNDwsIa7esAaWfA0AbQ.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/OM/OMWKEwnjpwZ7X6Ar93b2BjlGiKH3rYSnx-S5srC5SB8.cache b/tmp/cache/assets/sprockets/v3.0/OM/OMWKEwnjpwZ7X6Ar93b2BjlGiKH3rYSnx-S5srC5SB8.cache new file mode 100644 index 000000000..d89bea430 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/OM/OMWKEwnjpwZ7X6Ar93b2BjlGiKH3rYSnx-S5srC5SB8.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/OM/OmV0NV9XeRwVcMCup-o2Dd20AcWOaxFh8pBRflAEseo.cache b/tmp/cache/assets/sprockets/v3.0/OM/OmV0NV9XeRwVcMCup-o2Dd20AcWOaxFh8pBRflAEseo.cache new file mode 100644 index 000000000..1a7ce0f5e --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/OM/OmV0NV9XeRwVcMCup-o2Dd20AcWOaxFh8pBRflAEseo.cache @@ -0,0 +1 @@ +I"‡app/assets/stylesheets/application.scss?type=text/css&pipeline=self&id=e51b38be300603d136764aa6c96a16236124e13d480a9684eb76613e4effe9a4:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/OM/omCagrj79WaFPSt0seCO-ekCeMEcEmvTcKwyoSYbVws.cache b/tmp/cache/assets/sprockets/v3.0/OM/omCagrj79WaFPSt0seCO-ekCeMEcEmvTcKwyoSYbVws.cache new file mode 100644 index 000000000..bf7a29e8b Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/OM/omCagrj79WaFPSt0seCO-ekCeMEcEmvTcKwyoSYbVws.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/OP/OPrfHcYgSWtw5gj6k9HfNkXEJ-DlS2vFGH7TF5BARaw.cache b/tmp/cache/assets/sprockets/v3.0/OP/OPrfHcYgSWtw5gj6k9HfNkXEJ-DlS2vFGH7TF5BARaw.cache new file mode 100644 index 000000000..0554fd0fa --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/OP/OPrfHcYgSWtw5gj6k9HfNkXEJ-DlS2vFGH7TF5BARaw.cache @@ -0,0 +1 @@ +"%Ñö Í·;÷'ˆƒÿì•ÜÔÿ w%XÛõP´0ƒ \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/OW/OW3I4KH8w7fV2Jnps-vpmiwEJ0OihKkvGpBePuL3gBI.cache b/tmp/cache/assets/sprockets/v3.0/OW/OW3I4KH8w7fV2Jnps-vpmiwEJ0OihKkvGpBePuL3gBI.cache new file mode 100644 index 000000000..a63098f2a --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/OW/OW3I4KH8w7fV2Jnps-vpmiwEJ0OihKkvGpBePuL3gBI.cache @@ -0,0 +1,2 @@ +"%lŒõ™®)ÀþȉKÞ¡Å‘†PGøÒvu +y7O8uW \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/OW/OwRsjm9tUZ3UjUyQHwOBB-l2hEbLDFd7_oF8DEYJHVM.cache b/tmp/cache/assets/sprockets/v3.0/OW/OwRsjm9tUZ3UjUyQHwOBB-l2hEbLDFd7_oF8DEYJHVM.cache new file mode 100644 index 000000000..5162f8e8b --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/OW/OwRsjm9tUZ3UjUyQHwOBB-l2hEbLDFd7_oF8DEYJHVM.cache @@ -0,0 +1 @@ +"%ØÈçÑ¥~zþѱm‡qaÌyeYquôvux \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/OX/OXlK-bptqxiwXxiC7HPgCDt3WBBs9HRzCChV7zXsTvI.cache b/tmp/cache/assets/sprockets/v3.0/OX/OXlK-bptqxiwXxiC7HPgCDt3WBBs9HRzCChV7zXsTvI.cache new file mode 100644 index 000000000..1b55ec531 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/OX/OXlK-bptqxiwXxiC7HPgCDt3WBBs9HRzCChV7zXsTvI.cache @@ -0,0 +1 @@ +"%Úç¥Ø‰œGD÷,o„RþäØ Sg‹{4­¸Ðäç© \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/OZ/OZx68VkUey4DnhvRA-ToNK7UIKXVuUllzxL_DnYI5s0.cache b/tmp/cache/assets/sprockets/v3.0/OZ/OZx68VkUey4DnhvRA-ToNK7UIKXVuUllzxL_DnYI5s0.cache new file mode 100644 index 000000000..2bc1c2d5b --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/OZ/OZx68VkUey4DnhvRA-ToNK7UIKXVuUllzxL_DnYI5s0.cache @@ -0,0 +1 @@ +"%Ö=tÌ÷¾ìNÏá7Ù7fj]XÅiº*7³¨* !ípC \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Oc/OcM2QNQfkxzLCsZuYZzDnO4g5NAdoiKH3KVDe8JOA2I.cache b/tmp/cache/assets/sprockets/v3.0/Oc/OcM2QNQfkxzLCsZuYZzDnO4g5NAdoiKH3KVDe8JOA2I.cache new file mode 100644 index 000000000..cb5ccfe4b --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/Oc/OcM2QNQfkxzLCsZuYZzDnO4g5NAdoiKH3KVDe8JOA2I.cache @@ -0,0 +1 @@ +I"Ù/Users/kjfitzpatrick/.rvm/gems/ruby-2.5.1/gems/turbolinks-source-5.2.0/lib/assets/javascripts/turbolinks.js?type=application/javascript&pipeline=self&id=a7813c511ca568169ab0eff3321fe605af491387031414eaea584fe47dae587a:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Od/OdnP6OCo3Wg5zWqqlvDwyLIHTZe3lsQ2hpbju0ZQoHI.cache b/tmp/cache/assets/sprockets/v3.0/Od/OdnP6OCo3Wg5zWqqlvDwyLIHTZe3lsQ2hpbju0ZQoHI.cache new file mode 100644 index 000000000..e6aa96b78 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/Od/OdnP6OCo3Wg5zWqqlvDwyLIHTZe3lsQ2hpbju0ZQoHI.cache @@ -0,0 +1,2 @@ +"%,KŸ +¯–,;6µ¨:Í ‰k+FŠÂö5Ü×Âì% \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Og/OgoGryHBZ5i_UdUIhaV3nc5q03wzZE2tAf5ZqFBI94g.cache b/tmp/cache/assets/sprockets/v3.0/Og/OgoGryHBZ5i_UdUIhaV3nc5q03wzZE2tAf5ZqFBI94g.cache new file mode 100644 index 000000000..97fd67836 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/Og/OgoGryHBZ5i_UdUIhaV3nc5q03wzZE2tAf5ZqFBI94g.cache @@ -0,0 +1 @@ +I"‡app/assets/stylesheets/application.scss?type=text/css&pipeline=self&id=c78171978b1bc478d395384bd45624b9aa057eee8cb32c4b7c3a470c29a23cfc:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/On/OnFlWkxjIKxKErafXp2OTZt9L-jajgosF5s_dcVSBq4.cache b/tmp/cache/assets/sprockets/v3.0/On/OnFlWkxjIKxKErafXp2OTZt9L-jajgosF5s_dcVSBq4.cache new file mode 100644 index 000000000..9513aa70a Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/On/OnFlWkxjIKxKErafXp2OTZt9L-jajgosF5s_dcVSBq4.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/PG/PGV2S4PXwML_wFtZcHysikRzFKeUFRGzB9in1DFSmf4.cache b/tmp/cache/assets/sprockets/v3.0/PG/PGV2S4PXwML_wFtZcHysikRzFKeUFRGzB9in1DFSmf4.cache new file mode 100644 index 000000000..3a04cb3e9 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/PG/PGV2S4PXwML_wFtZcHysikRzFKeUFRGzB9in1DFSmf4.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/PH/PHU06IS_R1rreIsg5SvJLvMndSIukaL7J0RvExpjUhU.cache b/tmp/cache/assets/sprockets/v3.0/PH/PHU06IS_R1rreIsg5SvJLvMndSIukaL7J0RvExpjUhU.cache new file mode 100644 index 000000000..e82a4c375 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/PH/PHU06IS_R1rreIsg5SvJLvMndSIukaL7J0RvExpjUhU.cache @@ -0,0 +1 @@ +I"ˆapp/assets/stylesheets/application.scss?type=text/css&pipeline=debug&id=9a3046ef48f568514dd314c467f9f963ffc869a0b25438bc0b59bfb7d8090b2b:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/PH/PHcQBPa1RLI_BZ6LirAfXPfy_6mfWIbJEkwBmXHWuXM.cache b/tmp/cache/assets/sprockets/v3.0/PH/PHcQBPa1RLI_BZ6LirAfXPfy_6mfWIbJEkwBmXHWuXM.cache new file mode 100644 index 000000000..54f87a997 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/PH/PHcQBPa1RLI_BZ6LirAfXPfy_6mfWIbJEkwBmXHWuXM.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/PK/PKbOny7KuxynIFl9RThgmr9tXRwxGpMo9aT_x0fL1lM.cache b/tmp/cache/assets/sprockets/v3.0/PK/PKbOny7KuxynIFl9RThgmr9tXRwxGpMo9aT_x0fL1lM.cache new file mode 100644 index 000000000..ca3480fa9 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/PK/PKbOny7KuxynIFl9RThgmr9tXRwxGpMo9aT_x0fL1lM.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/PQ/PQSvTrhBLJOUNpEmCRlOTIOQ_L0t_T751ORq1gu97iE.cache b/tmp/cache/assets/sprockets/v3.0/PQ/PQSvTrhBLJOUNpEmCRlOTIOQ_L0t_T751ORq1gu97iE.cache new file mode 100644 index 000000000..0591ff0f9 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/PQ/PQSvTrhBLJOUNpEmCRlOTIOQ_L0t_T751ORq1gu97iE.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/PV/PVcocX38Ja0YvO0iOzX36SvGZ5KIA5qFlWg0BHOY16Q.cache b/tmp/cache/assets/sprockets/v3.0/PV/PVcocX38Ja0YvO0iOzX36SvGZ5KIA5qFlWg0BHOY16Q.cache new file mode 100644 index 000000000..c83361e38 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/PV/PVcocX38Ja0YvO0iOzX36SvGZ5KIA5qFlWg0BHOY16Q.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/PW/PWyevwt-7QtHm74XKBTbnQ5X4unB8CaYfiLuCKOd9bY.cache b/tmp/cache/assets/sprockets/v3.0/PW/PWyevwt-7QtHm74XKBTbnQ5X4unB8CaYfiLuCKOd9bY.cache new file mode 100644 index 000000000..b518011e2 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/PW/PWyevwt-7QtHm74XKBTbnQ5X4unB8CaYfiLuCKOd9bY.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/Pb/PbCoEj6sAu1YwWIj6CguSRnFeAvJwZWhAg1Z8HGK6sU.cache b/tmp/cache/assets/sprockets/v3.0/Pb/PbCoEj6sAu1YwWIj6CguSRnFeAvJwZWhAg1Z8HGK6sU.cache new file mode 100644 index 000000000..14087b4fa Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/Pb/PbCoEj6sAu1YwWIj6CguSRnFeAvJwZWhAg1Z8HGK6sU.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/Pb/pBMmSG4lmhwGS--xEaTIORC77JSOcMiVOURTAWaMiSg.cache b/tmp/cache/assets/sprockets/v3.0/Pb/pBMmSG4lmhwGS--xEaTIORC77JSOcMiVOURTAWaMiSg.cache new file mode 100644 index 000000000..b6c9e7516 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/Pb/pBMmSG4lmhwGS--xEaTIORC77JSOcMiVOURTAWaMiSg.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/Pc/PCzcs81_Ux-VvhDOsLilcb-lFXUFg_96BAbj60fKOqo.cache b/tmp/cache/assets/sprockets/v3.0/Pc/PCzcs81_Ux-VvhDOsLilcb-lFXUFg_96BAbj60fKOqo.cache new file mode 100644 index 000000000..4e22a7994 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/Pc/PCzcs81_Ux-VvhDOsLilcb-lFXUFg_96BAbj60fKOqo.cache @@ -0,0 +1 @@ +I"ˆapp/assets/stylesheets/application.scss?type=text/css&pipeline=debug&id=cdab3ebace07c3e1fb03ad972b9c5a60743157d56a721373c8f2c3c64f2bc6e6:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Pc/Pcl69sbMKP3kuO--br7trH-yubvnTRrMZZCiNJ3wUjU.cache b/tmp/cache/assets/sprockets/v3.0/Pc/Pcl69sbMKP3kuO--br7trH-yubvnTRrMZZCiNJ3wUjU.cache new file mode 100644 index 000000000..0ed40cb99 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/Pc/Pcl69sbMKP3kuO--br7trH-yubvnTRrMZZCiNJ3wUjU.cache @@ -0,0 +1 @@ +I"‡app/assets/stylesheets/application.scss?type=text/css&pipeline=self&id=7e5f80db8a7a841144a16da570d8beba886eb463e4fac92717fe06face3fc0b2:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Pd/PdNPmVNGF5IGgSj_siWlXweUXDWJeljxyEzIkKGxz2k.cache b/tmp/cache/assets/sprockets/v3.0/Pd/PdNPmVNGF5IGgSj_siWlXweUXDWJeljxyEzIkKGxz2k.cache new file mode 100644 index 000000000..ccd9d9991 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/Pd/PdNPmVNGF5IGgSj_siWlXweUXDWJeljxyEzIkKGxz2k.cache @@ -0,0 +1 @@ +I"‡app/assets/stylesheets/application.scss?type=text/css&pipeline=self&id=9b3a5e27470582a10c59775e591b81007f310d8cd8ebf5d82638831a8d24943d:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Pl/PlLLtqDgOrhlnlcmIHK2NWMympWUDXjGxo7fB2Fe2Tc.cache b/tmp/cache/assets/sprockets/v3.0/Pl/PlLLtqDgOrhlnlcmIHK2NWMympWUDXjGxo7fB2Fe2Tc.cache new file mode 100644 index 000000000..1191f5978 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/Pl/PlLLtqDgOrhlnlcmIHK2NWMympWUDXjGxo7fB2Fe2Tc.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/Po/PooRS0LyDAyoxpUg8-xq7uZsjoM9xaI9Iw4d9K8waZw.cache b/tmp/cache/assets/sprockets/v3.0/Po/PooRS0LyDAyoxpUg8-xq7uZsjoM9xaI9Iw4d9K8waZw.cache new file mode 100644 index 000000000..e441b134c --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/Po/PooRS0LyDAyoxpUg8-xq7uZsjoM9xaI9Iw4d9K8waZw.cache @@ -0,0 +1 @@ +"%Qšá20ÊÒÑ"L\Ƭ²4Fë„ÈËþšm$šv»šn \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Pr/PrD73hpphoUbI6bjbFwCEaYzGEOd-IHwq2gKf4I6RIA.cache b/tmp/cache/assets/sprockets/v3.0/Pr/PrD73hpphoUbI6bjbFwCEaYzGEOd-IHwq2gKf4I6RIA.cache new file mode 100644 index 000000000..c83361e38 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/Pr/PrD73hpphoUbI6bjbFwCEaYzGEOd-IHwq2gKf4I6RIA.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/Pr/PrPSa0HqPmLHrcLtHaV07Y2tiS6-1L2BfssQ0eoNrCE.cache b/tmp/cache/assets/sprockets/v3.0/Pr/PrPSa0HqPmLHrcLtHaV07Y2tiS6-1L2BfssQ0eoNrCE.cache new file mode 100644 index 000000000..d93bb4b43 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/Pr/PrPSa0HqPmLHrcLtHaV07Y2tiS6-1L2BfssQ0eoNrCE.cache @@ -0,0 +1 @@ +"%Q5í²7`Vl=¶½.Ø/^Îß&ˆ¦þy|ˆ;eAÓÐU \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Pt/PtkXq5KbYbIVgPS3VP5bM1BlCmhIilJWZsdixrxMv1M.cache b/tmp/cache/assets/sprockets/v3.0/Pt/PtkXq5KbYbIVgPS3VP5bM1BlCmhIilJWZsdixrxMv1M.cache new file mode 100644 index 000000000..4ffff4c50 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/Pt/PtkXq5KbYbIVgPS3VP5bM1BlCmhIilJWZsdixrxMv1M.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/Q0/Q0vQnEMBtLnRsiNqXkEH-Wic7MOXsgn_ASuEpPy-UJI.cache b/tmp/cache/assets/sprockets/v3.0/Q0/Q0vQnEMBtLnRsiNqXkEH-Wic7MOXsgn_ASuEpPy-UJI.cache new file mode 100644 index 000000000..440bb33cf Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/Q0/Q0vQnEMBtLnRsiNqXkEH-Wic7MOXsgn_ASuEpPy-UJI.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/QD/QDGYRB0Tg4XUMOajpdNx6TmVF2LyaK_FuxMo7Tj8mTQ.cache b/tmp/cache/assets/sprockets/v3.0/QD/QDGYRB0Tg4XUMOajpdNx6TmVF2LyaK_FuxMo7Tj8mTQ.cache new file mode 100644 index 000000000..94426c6f2 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/QD/QDGYRB0Tg4XUMOajpdNx6TmVF2LyaK_FuxMo7Tj8mTQ.cache @@ -0,0 +1 @@ +I"‡app/assets/stylesheets/application.scss?type=text/css&pipeline=self&id=5cd54c9d3aa5d1a1a8066c3bff32577fa9a0fea90a8a919b2c34cfc2971c0897:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/QF/QFdY0T5uU54JRWQFxfLP4U0RFFAp2wc47dD6Q2kw4Q4.cache b/tmp/cache/assets/sprockets/v3.0/QF/QFdY0T5uU54JRWQFxfLP4U0RFFAp2wc47dD6Q2kw4Q4.cache new file mode 100644 index 000000000..6a622bae5 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/QF/QFdY0T5uU54JRWQFxfLP4U0RFFAp2wc47dD6Q2kw4Q4.cache @@ -0,0 +1 @@ +I"Ô/Users/kjfitzpatrick/.rvm/gems/ruby-2.5.1/gems/jquery-rails-4.3.3/vendor/assets/javascripts/jquery3.js?type=application/javascript&pipeline=self&id=75a789ad66f520883cf2f197ab3f748a33904891e7ec1629a0fd926fa09d9289:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/QF/qfa98tfGGuGVnN5XJYZocgLzaIC6qw9zeNMiSC0N1lI.cache b/tmp/cache/assets/sprockets/v3.0/QF/qfa98tfGGuGVnN5XJYZocgLzaIC6qw9zeNMiSC0N1lI.cache new file mode 100644 index 000000000..92f88ef7e Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/QF/qfa98tfGGuGVnN5XJYZocgLzaIC6qw9zeNMiSC0N1lI.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/QM/QM2NXDtcHiy8h4ZVqFl-nE9PmiFAPFeujg8YK_cFlGA.cache b/tmp/cache/assets/sprockets/v3.0/QM/QM2NXDtcHiy8h4ZVqFl-nE9PmiFAPFeujg8YK_cFlGA.cache new file mode 100644 index 000000000..4cd66a3bd --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/QM/QM2NXDtcHiy8h4ZVqFl-nE9PmiFAPFeujg8YK_cFlGA.cache @@ -0,0 +1 @@ +I"Ö/Users/kjfitzpatrick/.rvm/gems/ruby-2.5.1/gems/bootstrap-4.1.3/assets/javascripts/bootstrap/scrollspy.js?type=application/javascript&pipeline=self&id=0056730bb13e837511094373780a072b6ef18aa93a2a56ac3089795f80387690:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/QP/QPI-eGZ2uYSH9mquJfqDu_RXF00WTFe0shaykD1b_kw.cache b/tmp/cache/assets/sprockets/v3.0/QP/QPI-eGZ2uYSH9mquJfqDu_RXF00WTFe0shaykD1b_kw.cache new file mode 100644 index 000000000..cd70bd5e0 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/QP/QPI-eGZ2uYSH9mquJfqDu_RXF00WTFe0shaykD1b_kw.cache @@ -0,0 +1 @@ +I"‡app/assets/stylesheets/application.scss?type=text/css&pipeline=self&id=e0f1cfa6a9d146e6a1263d83f3ba688f56c7a840a60d9204c3ff231162f39239:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/QQ/QQRfG_MKx3q8pvhALHeqPG-bydFTQTZZ2yFscIzpThw.cache b/tmp/cache/assets/sprockets/v3.0/QQ/QQRfG_MKx3q8pvhALHeqPG-bydFTQTZZ2yFscIzpThw.cache new file mode 100644 index 000000000..03fbd6723 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/QQ/QQRfG_MKx3q8pvhALHeqPG-bydFTQTZZ2yFscIzpThw.cache @@ -0,0 +1 @@ +I"‡app/assets/stylesheets/application.scss?type=text/css&pipeline=self&id=d9122e0c1c89570a2354a58198a7346ff14f494ffc250ad049a181c28ec3921b:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/QU/QUw7def8eOwEC350X34TZsnEfyrV2_rdypijvaRzJwA.cache b/tmp/cache/assets/sprockets/v3.0/QU/QUw7def8eOwEC350X34TZsnEfyrV2_rdypijvaRzJwA.cache new file mode 100644 index 000000000..597e488c3 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/QU/QUw7def8eOwEC350X34TZsnEfyrV2_rdypijvaRzJwA.cache @@ -0,0 +1 @@ +"%#þÄüc'bp qÉ¢ Ç<Þ{}:]“­k ϲųÔb† \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Qc/QcmMziS0utbmrb3EP4_JS4RkNHPgXMk5nPawhB_py-k.cache b/tmp/cache/assets/sprockets/v3.0/Qc/QcmMziS0utbmrb3EP4_JS4RkNHPgXMk5nPawhB_py-k.cache new file mode 100644 index 000000000..5c966a201 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/Qc/QcmMziS0utbmrb3EP4_JS4RkNHPgXMk5nPawhB_py-k.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/Qx/Qxr47vfS0Tnvr9ACGlkyBa-i8H_ZrX8FeJywTCY31iU.cache b/tmp/cache/assets/sprockets/v3.0/Qx/Qxr47vfS0Tnvr9ACGlkyBa-i8H_ZrX8FeJywTCY31iU.cache new file mode 100644 index 000000000..88405820d --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/Qx/Qxr47vfS0Tnvr9ACGlkyBa-i8H_ZrX8FeJywTCY31iU.cache @@ -0,0 +1 @@ +I"ˆapp/assets/stylesheets/application.scss?type=text/css&pipeline=debug&id=9f17c3bfe1681128f24309088b64cf981e0f2e0b55bbb29e674180e16573b923:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Qy/Qy2fds5W0vP6dHuEM6FI0A1ttU6ztNJikaMffL-ZMbI.cache b/tmp/cache/assets/sprockets/v3.0/Qy/Qy2fds5W0vP6dHuEM6FI0A1ttU6ztNJikaMffL-ZMbI.cache new file mode 100644 index 000000000..9580e2c08 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/Qy/Qy2fds5W0vP6dHuEM6FI0A1ttU6ztNJikaMffL-ZMbI.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/Qy/qYrsAQO1Cgkaa-LDEBZyk3omDsPUbXx1QQFwBgqKNIw.cache b/tmp/cache/assets/sprockets/v3.0/Qy/qYrsAQO1Cgkaa-LDEBZyk3omDsPUbXx1QQFwBgqKNIw.cache new file mode 100644 index 000000000..c83361e38 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/Qy/qYrsAQO1Cgkaa-LDEBZyk3omDsPUbXx1QQFwBgqKNIw.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/Qz/QZAm7uRB4OvRLauzrZ-sh1xgv0TZEN8lOB-KCvTK_EQ.cache b/tmp/cache/assets/sprockets/v3.0/Qz/QZAm7uRB4OvRLauzrZ-sh1xgv0TZEN8lOB-KCvTK_EQ.cache new file mode 100644 index 000000000..6ed13f930 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/Qz/QZAm7uRB4OvRLauzrZ-sh1xgv0TZEN8lOB-KCvTK_EQ.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/Qz/QzB92ERpxfSJYgtR2lv6lOJqWIkS0vl4Td3IknKTCtQ.cache b/tmp/cache/assets/sprockets/v3.0/Qz/QzB92ERpxfSJYgtR2lv6lOJqWIkS0vl4Td3IknKTCtQ.cache new file mode 100644 index 000000000..1f6b9d3b3 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/Qz/QzB92ERpxfSJYgtR2lv6lOJqWIkS0vl4Td3IknKTCtQ.cache @@ -0,0 +1 @@ +"%ñ…ºÒÞµÀç>:Í…=jÞ~±¦XXS¤íFÊcF î \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Qz/QzEONHzFEBNKXnm-w5lg80-dt4tFPadEwqNcXRmNoGo.cache b/tmp/cache/assets/sprockets/v3.0/Qz/QzEONHzFEBNKXnm-w5lg80-dt4tFPadEwqNcXRmNoGo.cache new file mode 100644 index 000000000..64dc7ca5e Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/Qz/QzEONHzFEBNKXnm-w5lg80-dt4tFPadEwqNcXRmNoGo.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/R0/R0m-gey-XrGGrn2T-YXRNLVlOxzdy4SLlVHpADnnr-I.cache b/tmp/cache/assets/sprockets/v3.0/R0/R0m-gey-XrGGrn2T-YXRNLVlOxzdy4SLlVHpADnnr-I.cache new file mode 100644 index 000000000..6ed13f930 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/R0/R0m-gey-XrGGrn2T-YXRNLVlOxzdy4SLlVHpADnnr-I.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/R3/R3J1f3wHssiYmLd7ZtrPQW-dJzRhqWHDoP-oLz5MQVI.cache b/tmp/cache/assets/sprockets/v3.0/R3/R3J1f3wHssiYmLd7ZtrPQW-dJzRhqWHDoP-oLz5MQVI.cache new file mode 100644 index 000000000..e4b5adff4 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/R3/R3J1f3wHssiYmLd7ZtrPQW-dJzRhqWHDoP-oLz5MQVI.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/R5/R5KCtTphjnfzyIlzrT_y2LQ-1I1EB6NCYFm0kvVADbo.cache b/tmp/cache/assets/sprockets/v3.0/R5/R5KCtTphjnfzyIlzrT_y2LQ-1I1EB6NCYFm0kvVADbo.cache new file mode 100644 index 000000000..a53c28bdf --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/R5/R5KCtTphjnfzyIlzrT_y2LQ-1I1EB6NCYFm0kvVADbo.cache @@ -0,0 +1 @@ +I"ˆapp/assets/stylesheets/application.scss?type=text/css&pipeline=debug&id=7948d17c204bbd356c8b35fbc9fd1abd0b071d451f5a7dee47ec0f6c1863a91a:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/R5/R5tDIEEvFGr2McgOzTshrLX32K2Ws8qPz1fIlkRQXSA.cache b/tmp/cache/assets/sprockets/v3.0/R5/R5tDIEEvFGr2McgOzTshrLX32K2Ws8qPz1fIlkRQXSA.cache new file mode 100644 index 000000000..c83361e38 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/R5/R5tDIEEvFGr2McgOzTshrLX32K2Ws8qPz1fIlkRQXSA.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/RH/RHVRl83TliJdW9eGMV3pM9L4YuBX--FYBa_oP3V80q8.cache b/tmp/cache/assets/sprockets/v3.0/RH/RHVRl83TliJdW9eGMV3pM9L4YuBX--FYBa_oP3V80q8.cache new file mode 100644 index 000000000..6fbe00a0d --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/RH/RHVRl83TliJdW9eGMV3pM9L4YuBX--FYBa_oP3V80q8.cache @@ -0,0 +1 @@ +I"ˆapp/assets/stylesheets/application.scss?type=text/css&pipeline=debug&id=1cb4fd10dc6b14215614a2a3ee4758bf4b77ed886621c043b2fb9f36f4ddb2b4:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/RI/RImv-xmSoPSm-nBosvIYJEtmb05CN7qWmzLdysgyoBI.cache b/tmp/cache/assets/sprockets/v3.0/RI/RImv-xmSoPSm-nBosvIYJEtmb05CN7qWmzLdysgyoBI.cache new file mode 100644 index 000000000..04504064c --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/RI/RImv-xmSoPSm-nBosvIYJEtmb05CN7qWmzLdysgyoBI.cache @@ -0,0 +1 @@ +"%zvÁA[ê«uò—°øZ‚5ÃZ\Ü'Ók°¹$) \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/RJ/RJrg9FchLh6xUA9y-_90JoA4j8ehP1XiLkqOT8lItYU.cache b/tmp/cache/assets/sprockets/v3.0/RJ/RJrg9FchLh6xUA9y-_90JoA4j8ehP1XiLkqOT8lItYU.cache new file mode 100644 index 000000000..3081cb732 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/RJ/RJrg9FchLh6xUA9y-_90JoA4j8ehP1XiLkqOT8lItYU.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/RU/RUwBkz1-ZoDrICFlwpQ2QpruoYThtLY8eWsCUKzy_SU.cache b/tmp/cache/assets/sprockets/v3.0/RU/RUwBkz1-ZoDrICFlwpQ2QpruoYThtLY8eWsCUKzy_SU.cache new file mode 100644 index 000000000..e29521235 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/RU/RUwBkz1-ZoDrICFlwpQ2QpruoYThtLY8eWsCUKzy_SU.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/RU/RuKc0oipuiwxwYbcoVmTBVUsOXs6_AIhf9B5wzt5vYw.cache b/tmp/cache/assets/sprockets/v3.0/RU/RuKc0oipuiwxwYbcoVmTBVUsOXs6_AIhf9B5wzt5vYw.cache new file mode 100644 index 000000000..0f5bfcc72 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/RU/RuKc0oipuiwxwYbcoVmTBVUsOXs6_AIhf9B5wzt5vYw.cache @@ -0,0 +1 @@ +"%ت$ìÆÎË`Q[À“ñÉÚ8 9&Ù«Šà÷ónnî­ \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/RZ/RZ2LHGxMFFtRoLhjVrih3iCnQAakOnEWmXBVxVv9PNo.cache b/tmp/cache/assets/sprockets/v3.0/RZ/RZ2LHGxMFFtRoLhjVrih3iCnQAakOnEWmXBVxVv9PNo.cache new file mode 100644 index 000000000..bbe61c173 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/RZ/RZ2LHGxMFFtRoLhjVrih3iCnQAakOnEWmXBVxVv9PNo.cache @@ -0,0 +1 @@ +I"‡app/assets/stylesheets/application.scss?type=text/css&pipeline=self&id=2ab371a77618539049ccaa391da5e65566b5a5959a72da233dbea6712bfdbc09:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Rn/Rndn1hl-LxDtD4Bs1DWw1RM3kQLlLA4nnCtknCD3nmc.cache b/tmp/cache/assets/sprockets/v3.0/Rn/Rndn1hl-LxDtD4Bs1DWw1RM3kQLlLA4nnCtknCD3nmc.cache new file mode 100644 index 000000000..f7cd2bccd --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/Rn/Rndn1hl-LxDtD4Bs1DWw1RM3kQLlLA4nnCtknCD3nmc.cache @@ -0,0 +1,3 @@ +[o:Set: +@hash} +I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"4processors:type=image/jpeg&file_type=image/jpeg;TTI"?file-digest://app/assets/images/anise-aroma-art-277253.jpg;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Rn/rN7nhZmWuUIVr5zi0Jki-I_LeSTC-O5RpgGKiQ4szAc.cache b/tmp/cache/assets/sprockets/v3.0/Rn/rN7nhZmWuUIVr5zi0Jki-I_LeSTC-O5RpgGKiQ4szAc.cache new file mode 100644 index 000000000..e2c01ef8b Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/Rn/rN7nhZmWuUIVr5zi0Jki-I_LeSTC-O5RpgGKiQ4szAc.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/Rn/rnLrSAH5lHO6ovAR_gmbLmoW96GipzxAbOvM6QjgqqE.cache b/tmp/cache/assets/sprockets/v3.0/Rn/rnLrSAH5lHO6ovAR_gmbLmoW96GipzxAbOvM6QjgqqE.cache new file mode 100644 index 000000000..55427c018 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/Rn/rnLrSAH5lHO6ovAR_gmbLmoW96GipzxAbOvM6QjgqqE.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/Rp/Rpws6i590rUUnBbij3HrjFv208xeNh8zqItlZQuyp_k.cache b/tmp/cache/assets/sprockets/v3.0/Rp/Rpws6i590rUUnBbij3HrjFv208xeNh8zqItlZQuyp_k.cache new file mode 100644 index 000000000..cbf365297 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/Rp/Rpws6i590rUUnBbij3HrjFv208xeNh8zqItlZQuyp_k.cache @@ -0,0 +1 @@ +I"€app/assets/images/anise-aroma-art-277253.jpg?type=image/jpeg&id=bad7c1dae378f98d1d043080af30de71dad230d0e8c7fe3ebd5bfae0c150b6c8:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/SC/SC3h4ebwFvSKVb0a4CxZIpZP8KzIwKVs2liz5aqfdVQ.cache b/tmp/cache/assets/sprockets/v3.0/SC/SC3h4ebwFvSKVb0a4CxZIpZP8KzIwKVs2liz5aqfdVQ.cache new file mode 100644 index 000000000..2474b4c41 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/SC/SC3h4ebwFvSKVb0a4CxZIpZP8KzIwKVs2liz5aqfdVQ.cache @@ -0,0 +1 @@ +I"~app/assets/stylesheets/application.scss?type=text/css&id=d60557f53b7184a14d959b2942c9479c1e2d2dbc4469977096d8d88821c5aaaa:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/SQ/SQCkqq319UQU3RDhOT0D8iEfLXsNEM-RZxiorM9d0YI.cache b/tmp/cache/assets/sprockets/v3.0/SQ/SQCkqq319UQU3RDhOT0D8iEfLXsNEM-RZxiorM9d0YI.cache new file mode 100644 index 000000000..69b38b7db --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/SQ/SQCkqq319UQU3RDhOT0D8iEfLXsNEM-RZxiorM9d0YI.cache @@ -0,0 +1 @@ +"%õhÞ2/vcÃMcϳ îâb;k‘R$YYÛä†ë(ú¢ \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Sj/Sj8No0TxUc0XmMUccaffLprI54NUaw1rtYdvlcCZFoQ.cache b/tmp/cache/assets/sprockets/v3.0/Sj/Sj8No0TxUc0XmMUccaffLprI54NUaw1rtYdvlcCZFoQ.cache new file mode 100644 index 000000000..b292343cf Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/Sj/Sj8No0TxUc0XmMUccaffLprI54NUaw1rtYdvlcCZFoQ.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/Sj/SjEUoWFitoAO6d9Rr1fWMFZNSOjgGwwqC77GfCN9_IQ.cache b/tmp/cache/assets/sprockets/v3.0/Sj/SjEUoWFitoAO6d9Rr1fWMFZNSOjgGwwqC77GfCN9_IQ.cache new file mode 100644 index 000000000..60bb16d1a --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/Sj/SjEUoWFitoAO6d9Rr1fWMFZNSOjgGwwqC77GfCN9_IQ.cache @@ -0,0 +1 @@ +"%4|Bþ–{蔸võÈ·:y©¬t‹Eñºm?`¾· \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Sn/SnMgemOwmYZV-tNN97mP9Nvhiasx20rTL6F8UIcjzPg.cache b/tmp/cache/assets/sprockets/v3.0/Sn/SnMgemOwmYZV-tNN97mP9Nvhiasx20rTL6F8UIcjzPg.cache new file mode 100644 index 000000000..72ff65b32 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/Sn/SnMgemOwmYZV-tNN97mP9Nvhiasx20rTL6F8UIcjzPg.cache @@ -0,0 +1 @@ +"%X^™±Dƒ¸€^siÄz“€O:,gu÷02Š5Š Ñ \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Ss/SsYm-7QgOO0spG0ureKrtmF_vl4rEi56WOt24IJMGIU.cache b/tmp/cache/assets/sprockets/v3.0/Ss/SsYm-7QgOO0spG0ureKrtmF_vl4rEi56WOt24IJMGIU.cache new file mode 100644 index 000000000..f8a2145e2 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/Ss/SsYm-7QgOO0spG0ureKrtmF_vl4rEi56WOt24IJMGIU.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/T2/T2znAOZ3tTMncGkNhFMpdmCWFETzHIHpn4vW7qlBips.cache b/tmp/cache/assets/sprockets/v3.0/T2/T2znAOZ3tTMncGkNhFMpdmCWFETzHIHpn4vW7qlBips.cache new file mode 100644 index 000000000..cb2b1166c Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/T2/T2znAOZ3tTMncGkNhFMpdmCWFETzHIHpn4vW7qlBips.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/T9/T9RXN8zqwHSA788qQT51uYPX6KruaQRiPBzOnvA0Nns.cache b/tmp/cache/assets/sprockets/v3.0/T9/T9RXN8zqwHSA788qQT51uYPX6KruaQRiPBzOnvA0Nns.cache new file mode 100644 index 000000000..559d5e5af --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/T9/T9RXN8zqwHSA788qQT51uYPX6KruaQRiPBzOnvA0Nns.cache @@ -0,0 +1 @@ +I"ˆapp/assets/stylesheets/application.scss?type=text/css&pipeline=debug&id=72775ad5aa21ecd5b6d2fec757dbaed9685b50d5c2cd77387454739a655cadad:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/TA/TAQhb0sPzyIM-7zEP_sbn30w6G5v1BKMdtkhnPhvR_U.cache b/tmp/cache/assets/sprockets/v3.0/TA/TAQhb0sPzyIM-7zEP_sbn30w6G5v1BKMdtkhnPhvR_U.cache new file mode 100644 index 000000000..0d9e10c06 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/TA/TAQhb0sPzyIM-7zEP_sbn30w6G5v1BKMdtkhnPhvR_U.cache @@ -0,0 +1 @@ +"%oœ×ÿ¢+ÂF§)#³ éÝ€áU«­¨«.k˜»ˆ \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/TB/TBVwVTrPcC7eDpc5TqqDYlY7gA9n9pUge54CpI4JTfM.cache b/tmp/cache/assets/sprockets/v3.0/TB/TBVwVTrPcC7eDpc5TqqDYlY7gA9n9pUge54CpI4JTfM.cache new file mode 100644 index 000000000..921a58fae --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/TB/TBVwVTrPcC7eDpc5TqqDYlY7gA9n9pUge54CpI4JTfM.cache @@ -0,0 +1 @@ +"%Χ$€ê”&¦vÙÈêælŸ²Çï'cR[Èã›DÅœ \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/TB/TbrULlz_Y-JKVlkppO9ZsrixmwyTEyouwDwOWJb679c.cache b/tmp/cache/assets/sprockets/v3.0/TB/TbrULlz_Y-JKVlkppO9ZsrixmwyTEyouwDwOWJb679c.cache new file mode 100644 index 000000000..ff95c5937 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/TB/TbrULlz_Y-JKVlkppO9ZsrixmwyTEyouwDwOWJb679c.cache @@ -0,0 +1 @@ +"%¼Á–’KWÙÔÚßX6‡PvÖ5•‡”%¿ýÿ¹N*µc \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/TT/TT2LUgsaXzOl3eriRxv4LpHJp0GhbTjE7saNYLowjmo.cache b/tmp/cache/assets/sprockets/v3.0/TT/TT2LUgsaXzOl3eriRxv4LpHJp0GhbTjE7saNYLowjmo.cache new file mode 100644 index 000000000..e862168d0 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/TT/TT2LUgsaXzOl3eriRxv4LpHJp0GhbTjE7saNYLowjmo.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/TT/TTN0F9rlxqKinDj7P9gy9YsaNj-bcnho4fxrFBIqPig.cache b/tmp/cache/assets/sprockets/v3.0/TT/TTN0F9rlxqKinDj7P9gy9YsaNj-bcnho4fxrFBIqPig.cache new file mode 100644 index 000000000..a8b6d7741 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/TT/TTN0F9rlxqKinDj7P9gy9YsaNj-bcnho4fxrFBIqPig.cache @@ -0,0 +1 @@ +I"ˆapp/assets/stylesheets/application.scss?type=text/css&pipeline=debug&id=91a39398c320a2e48b192db0ee35c96945d1e46df065de853353fbe046947e81:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/TT/ttfv4YvQbzNTJxUyggnxsL-obEnjv0O7VLpS7e3FR3Y.cache b/tmp/cache/assets/sprockets/v3.0/TT/ttfv4YvQbzNTJxUyggnxsL-obEnjv0O7VLpS7e3FR3Y.cache new file mode 100644 index 000000000..67298194e Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/TT/ttfv4YvQbzNTJxUyggnxsL-obEnjv0O7VLpS7e3FR3Y.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/TT/ttlTNnTYJIBMgwShbbvN-LuOdctP0o3Nsr5kzhi_CU0.cache b/tmp/cache/assets/sprockets/v3.0/TT/ttlTNnTYJIBMgwShbbvN-LuOdctP0o3Nsr5kzhi_CU0.cache new file mode 100644 index 000000000..a826d0ef8 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/TT/ttlTNnTYJIBMgwShbbvN-LuOdctP0o3Nsr5kzhi_CU0.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/TV/TVi8KRpjFPpFaxlXrCttGR0kq3mQ7wA1mAA768eYSck.cache b/tmp/cache/assets/sprockets/v3.0/TV/TVi8KRpjFPpFaxlXrCttGR0kq3mQ7wA1mAA768eYSck.cache new file mode 100644 index 000000000..48209222e Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/TV/TVi8KRpjFPpFaxlXrCttGR0kq3mQ7wA1mAA768eYSck.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/TV/tV4tX0BCCOB7bi55u7_zIwjKl1BQcZ-GNLYss-RCNd4.cache b/tmp/cache/assets/sprockets/v3.0/TV/tV4tX0BCCOB7bi55u7_zIwjKl1BQcZ-GNLYss-RCNd4.cache new file mode 100644 index 000000000..192f12d8e Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/TV/tV4tX0BCCOB7bi55u7_zIwjKl1BQcZ-GNLYss-RCNd4.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/Tc/Tcdo77--cmnCJ4VyM4X2OgSO2QT4_1AIrg0Ee1aRViA.cache b/tmp/cache/assets/sprockets/v3.0/Tc/Tcdo77--cmnCJ4VyM4X2OgSO2QT4_1AIrg0Ee1aRViA.cache new file mode 100644 index 000000000..440bb33cf Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/Tc/Tcdo77--cmnCJ4VyM4X2OgSO2QT4_1AIrg0Ee1aRViA.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/Tj/TjLwqNftuFkf3oX5n8i70jgnva0MOtJhPk6bzyVonm4.cache b/tmp/cache/assets/sprockets/v3.0/Tj/TjLwqNftuFkf3oX5n8i70jgnva0MOtJhPk6bzyVonm4.cache new file mode 100644 index 000000000..1ed1125c6 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/Tj/TjLwqNftuFkf3oX5n8i70jgnva0MOtJhPk6bzyVonm4.cache @@ -0,0 +1,3 @@ +xÚíYÏoÓ0eê&7¤ MBx]71uš´ H;3.€4¥©ÛºMbÏN²µ]Aâ/ÇUÂò«©½µ1¾c¿ïùsüü’¼ç{ßwiwï [Ý#GŒ?.÷_ã &œ>B+Æ\´º­OWW—û¯òטŽDëlwyá%wˆ',y9ýããÔÅBP.ºá”ás‡1¸N(«¡±;Âå„…âáëuaØ#>ؤÅO—(«O†X„]„$9BàPä€å +Úã¿}[ ui0 ÃtØÅ04¾‰0Ÿv”U‰ïÈ?•U“a¥ªïtÚLǶµ–D·¾§#Œ5êçÆ–ê‹"}r7¡Éx@™Ü<œ¸dóØGCì Ä£ÞÔ:²Oìvò;©e…ïQ¹&B^lÛ‡(ÆAŸòú•˜›e-õlƒ=ӱݱ;Êvcc„¥N§Æ‰3¿WÉ“QÆ0WŽNeW}¨¥$MH^ÈÌð.-Gæn]w¸¯ã.r×éÉ'¶ly¤—ÝwŸÉâý­ÈP‹©Øš·1a,‘”Ëý˜R®=î…!ºb“ƒ-¬jLð­òöùcñåd(hÄÝdIó´Õ;xk²Øì›"s@ûøÚ§ýÈ{xN9¨Q,…7j")u=VÛn˃¤~±¼¦yŠmQCt™¡ª ­Gi(Bî0K,Ÿ¬'ٓ٩ÊÝê¡çZV÷|Þ÷êñ;¿ »àš©,Ìybý,ælkÍÌM¹JýfÍŸükà—ÉC¹~5ço=jÚø©UÏÝ߈;«{,Ü© ½k˜Æt‡U§»k˜¦±ÃçiÔ™Ú*LÎÖHú^ÐÑr;}T~ß”Q ÃÆVæ¿3çfeêVæŒMW™˜5oWeJa2“ç‘Jž…ET‚R‰®}Ôû¸û(d^ª«;÷†õºj÷æ4»Š>2 ÛU¼3SÚ]E¾ø'䙬JVÙžR"RMUÇZ‚z,¯¦ +ì§a%U&`ð»t…›ÐP…ôÖÔ®0ß4oEιÉW´-ïî'³ëøp鎜 ÀÞ#AË—1黄ᇠ~¦gÏZg­Ú9) 12ÄÈ#CŒ 12ÄÈ#CŒ 12ÄÈ#CŒ 12ÄÈ#CŒ 12ÄÈ#CŒ 12ÄÈ#CŒ 12ÄÈ#CŒ 1òÿ#ÿxkç \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Tn/TnYtua6iOFx85wSbKPr8Ts_DIImH5EFO9oesC8dqsns.cache b/tmp/cache/assets/sprockets/v3.0/Tn/TnYtua6iOFx85wSbKPr8Ts_DIImH5EFO9oesC8dqsns.cache new file mode 100644 index 000000000..1c7a7d5b4 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/Tn/TnYtua6iOFx85wSbKPr8Ts_DIImH5EFO9oesC8dqsns.cache @@ -0,0 +1,2 @@ +"%" + aR¤Tf9ÿ´¬^—sà5' ŽKq¼pÌïK \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Tp/TpTzgx86nyHjyhBp91ybOOzIisya_ngTmk6Md4o_x6M.cache b/tmp/cache/assets/sprockets/v3.0/Tp/TpTzgx86nyHjyhBp91ybOOzIisya_ngTmk6Md4o_x6M.cache new file mode 100644 index 000000000..43fea011a Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/Tp/TpTzgx86nyHjyhBp91ybOOzIisya_ngTmk6Md4o_x6M.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/Ts/TsNjKOiRSvu-2wnT6JmFsTRx1mHe88KajvCqpp92mJc.cache b/tmp/cache/assets/sprockets/v3.0/Ts/TsNjKOiRSvu-2wnT6JmFsTRx1mHe88KajvCqpp92mJc.cache new file mode 100644 index 000000000..479857d1c Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/Ts/TsNjKOiRSvu-2wnT6JmFsTRx1mHe88KajvCqpp92mJc.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/Tu/TuDmUpMLLGXaEXOp1O44RLrZdJmT1-yvDTiv4BPSjpQ.cache b/tmp/cache/assets/sprockets/v3.0/Tu/TuDmUpMLLGXaEXOp1O44RLrZdJmT1-yvDTiv4BPSjpQ.cache new file mode 100644 index 000000000..9efaa9468 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/Tu/TuDmUpMLLGXaEXOp1O44RLrZdJmT1-yvDTiv4BPSjpQ.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/U0/U04dwN9L7HZD5BDUufTPEdf0HDaJiCj8R_SYXUnESc0.cache b/tmp/cache/assets/sprockets/v3.0/U0/U04dwN9L7HZD5BDUufTPEdf0HDaJiCj8R_SYXUnESc0.cache new file mode 100644 index 000000000..003037e91 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/U0/U04dwN9L7HZD5BDUufTPEdf0HDaJiCj8R_SYXUnESc0.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/U6/U6dsYLEZtY79MgHwnXam2J3yf4ftEKatpxPwVDJiio0.cache b/tmp/cache/assets/sprockets/v3.0/U6/U6dsYLEZtY79MgHwnXam2J3yf4ftEKatpxPwVDJiio0.cache new file mode 100644 index 000000000..a087eb3af Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/U6/U6dsYLEZtY79MgHwnXam2J3yf4ftEKatpxPwVDJiio0.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/UV/UVLzGxMvVYZY3PKIY9nOCi7--3jAEpz6eotPbDlYRy8.cache b/tmp/cache/assets/sprockets/v3.0/UV/UVLzGxMvVYZY3PKIY9nOCi7--3jAEpz6eotPbDlYRy8.cache new file mode 100644 index 000000000..232e2f8fa --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/UV/UVLzGxMvVYZY3PKIY9nOCi7--3jAEpz6eotPbDlYRy8.cache @@ -0,0 +1,2 @@ +[o:Set: +@hash} I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"[processors:type=application/javascript&file_type=application/javascript&pipeline=debug;TTI"8file-digest://app/assets/javascripts/application.js;TTI"Zprocessors:type=application/javascript&file_type=application/javascript&pipeline=self;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/UX/UXO6FlvAtNpM0e3x5ayQ4itO36zZH0niDk4-UkMJaoA.cache b/tmp/cache/assets/sprockets/v3.0/UX/UXO6FlvAtNpM0e3x5ayQ4itO36zZH0niDk4-UkMJaoA.cache new file mode 100644 index 000000000..dfc0f8e34 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/UX/UXO6FlvAtNpM0e3x5ayQ4itO36zZH0niDk4-UkMJaoA.cache @@ -0,0 +1 @@ +"%ÉŠ¾Ëôûå4F©@Y{ÖIÚÅcèÓ¿;Ó²Â&¸MÔ@ \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/UX/UxMxrzWoGX0e7mCJnsPSEkNH28BtGPPfKrbabX_HqUA.cache b/tmp/cache/assets/sprockets/v3.0/UX/UxMxrzWoGX0e7mCJnsPSEkNH28BtGPPfKrbabX_HqUA.cache new file mode 100644 index 000000000..08bc7f605 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/UX/UxMxrzWoGX0e7mCJnsPSEkNH28BtGPPfKrbabX_HqUA.cache @@ -0,0 +1 @@ +I"ˆapp/assets/stylesheets/application.scss?type=text/css&pipeline=debug&id=03989178f1b9f0fa334c3077a7a970efe9534778176e2cd8b55691984657a5a7:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Ua/UaqZkvSjqpNW0RKeHoE8QLLmEi5u8MPsXjdj7Fed3Z4.cache b/tmp/cache/assets/sprockets/v3.0/Ua/UaqZkvSjqpNW0RKeHoE8QLLmEi5u8MPsXjdj7Fed3Z4.cache new file mode 100644 index 000000000..16e3d2ab2 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/Ua/UaqZkvSjqpNW0RKeHoE8QLLmEi5u8MPsXjdj7Fed3Z4.cache @@ -0,0 +1 @@ +"%W\ªÈ€âÒì3ö•ñ Oð~·=w‡còÇåîsÐó9{‹ \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Ua/uA76mksOldvwX0V2N-f4QR_oUnQtEkd1hxYGQjJxhOY.cache b/tmp/cache/assets/sprockets/v3.0/Ua/uA76mksOldvwX0V2N-f4QR_oUnQtEkd1hxYGQjJxhOY.cache new file mode 100644 index 000000000..36c0dcecc --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/Ua/uA76mksOldvwX0V2N-f4QR_oUnQtEkd1hxYGQjJxhOY.cache @@ -0,0 +1 @@ +"%"[zn™Š_@tìQÍ-Sk&Y‘«¼ç׋ÁotÛ \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Ud/UdUDMk4aEWgbuQb6LkIL57gMhdrZAMLm2kPc4_yezMA.cache b/tmp/cache/assets/sprockets/v3.0/Ud/UdUDMk4aEWgbuQb6LkIL57gMhdrZAMLm2kPc4_yezMA.cache new file mode 100644 index 000000000..7db77c8d5 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/Ud/UdUDMk4aEWgbuQb6LkIL57gMhdrZAMLm2kPc4_yezMA.cache @@ -0,0 +1 @@ +I"Ð/Users/kjfitzpatrick/.rvm/gems/ruby-2.5.1/gems/bootstrap-4.1.3/assets/javascripts/bootstrap/tab.js?type=application/javascript&pipeline=self&id=60b375eb4df41c9b2f7799af8f4448da7e0221a490ba09bcb80a6b4530fd0e4e:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Uk/UkBgYyKHrZTDvFA_MjefC9Gvmj7c2_SQvH4m1OqMl9o.cache b/tmp/cache/assets/sprockets/v3.0/Uk/UkBgYyKHrZTDvFA_MjefC9Gvmj7c2_SQvH4m1OqMl9o.cache new file mode 100644 index 000000000..a394f4668 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/Uk/UkBgYyKHrZTDvFA_MjefC9Gvmj7c2_SQvH4m1OqMl9o.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/Ur/UR5me7RVIOvfPhnwbfnSBzHls_BxXfe353iP9Va7BPI.cache b/tmp/cache/assets/sprockets/v3.0/Ur/UR5me7RVIOvfPhnwbfnSBzHls_BxXfe353iP9Va7BPI.cache new file mode 100644 index 000000000..6ed13f930 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/Ur/UR5me7RVIOvfPhnwbfnSBzHls_BxXfe353iP9Va7BPI.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/Ur/UrOHblbGdXErdSfZ5R8Nnq4r1ytOXgRbro2ESQDVObo.cache b/tmp/cache/assets/sprockets/v3.0/Ur/UrOHblbGdXErdSfZ5R8Nnq4r1ytOXgRbro2ESQDVObo.cache new file mode 100644 index 000000000..dbaef3185 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/Ur/UrOHblbGdXErdSfZ5R8Nnq4r1ytOXgRbro2ESQDVObo.cache @@ -0,0 +1 @@ +I"ˆapp/assets/stylesheets/application.scss?type=text/css&pipeline=debug&id=15c767701e010ce138b4c5115b3a2f3fdf7c0f00a08a205e1d6f913ad89d9c97:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Ut/UtP_va6HceOndn7j6tKbL4gkIO3ax4KB84f8xLb4n_A.cache b/tmp/cache/assets/sprockets/v3.0/Ut/UtP_va6HceOndn7j6tKbL4gkIO3ax4KB84f8xLb4n_A.cache new file mode 100644 index 000000000..18e518eaa Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/Ut/UtP_va6HceOndn7j6tKbL4gkIO3ax4KB84f8xLb4n_A.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/V5/V5J3lo2uGgQSsldSfB7Hbmfw5UBnNRfo7NIlXC2peYQ.cache b/tmp/cache/assets/sprockets/v3.0/V5/V5J3lo2uGgQSsldSfB7Hbmfw5UBnNRfo7NIlXC2peYQ.cache new file mode 100644 index 000000000..1e6e49501 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/V5/V5J3lo2uGgQSsldSfB7Hbmfw5UBnNRfo7NIlXC2peYQ.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/VB/VB-os08ELugvpqWpae_DOlS_RhF_n52By_fHUPxmwTI.cache b/tmp/cache/assets/sprockets/v3.0/VB/VB-os08ELugvpqWpae_DOlS_RhF_n52By_fHUPxmwTI.cache new file mode 100644 index 000000000..6ed13f930 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/VB/VB-os08ELugvpqWpae_DOlS_RhF_n52By_fHUPxmwTI.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/VB/VBQgggH_BTdnM15dtsH7b7LzPSkWVPu9I8gnpl1xjjM.cache b/tmp/cache/assets/sprockets/v3.0/VB/VBQgggH_BTdnM15dtsH7b7LzPSkWVPu9I8gnpl1xjjM.cache new file mode 100644 index 000000000..9d4360a69 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/VB/VBQgggH_BTdnM15dtsH7b7LzPSkWVPu9I8gnpl1xjjM.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/VQ/VQkHrwdU43gVoHxKeSJ0Qmbf1R_E6AYG6hWcFlkn8SI.cache b/tmp/cache/assets/sprockets/v3.0/VQ/VQkHrwdU43gVoHxKeSJ0Qmbf1R_E6AYG6hWcFlkn8SI.cache new file mode 100644 index 000000000..f6078dbde --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/VQ/VQkHrwdU43gVoHxKeSJ0Qmbf1R_E6AYG6hWcFlkn8SI.cache @@ -0,0 +1 @@ +"%'ð|4¤Æ?á뤊$èV¨ûïDŒPýßKeà–c+æ \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/VV/VVbhNBLm_0x5JzRhX1X8zckQMl8plh4ztSyAgVN2sso.cache b/tmp/cache/assets/sprockets/v3.0/VV/VVbhNBLm_0x5JzRhX1X8zckQMl8plh4ztSyAgVN2sso.cache new file mode 100644 index 000000000..25be65f12 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/VV/VVbhNBLm_0x5JzRhX1X8zckQMl8plh4ztSyAgVN2sso.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/Vc/VcsamIf6yyOut_HaDXBVIM8Yj-dYwh9p23quPAEcnPA.cache b/tmp/cache/assets/sprockets/v3.0/Vc/VcsamIf6yyOut_HaDXBVIM8Yj-dYwh9p23quPAEcnPA.cache new file mode 100644 index 000000000..a02a905d8 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/Vc/VcsamIf6yyOut_HaDXBVIM8Yj-dYwh9p23quPAEcnPA.cache @@ -0,0 +1,2 @@ +"%€“Õ„>ëî¨ÙÒºöŠÓô.˜u” +’ÌLûûŽží \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Vc/vCmkQzASUtErMTdksiJzm5h932Spfv8YIjNoxIqXfkc.cache b/tmp/cache/assets/sprockets/v3.0/Vc/vCmkQzASUtErMTdksiJzm5h932Spfv8YIjNoxIqXfkc.cache new file mode 100644 index 000000000..94b68fe8a --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/Vc/vCmkQzASUtErMTdksiJzm5h932Spfv8YIjNoxIqXfkc.cache @@ -0,0 +1 @@ +I"ˆapp/assets/stylesheets/application.scss?type=text/css&pipeline=debug&id=96df21894d2ecb1fd22cdb1e79f0f68109df8ca8e3ccf0a94b5b7e3ea1db32c0:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Vd/VdEKcQ6qK6q2Sq5XKaRFS1hUrWWv56Gd_a4Qg3254yA.cache b/tmp/cache/assets/sprockets/v3.0/Vd/VdEKcQ6qK6q2Sq5XKaRFS1hUrWWv56Gd_a4Qg3254yA.cache new file mode 100644 index 000000000..e00a6977f --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/Vd/VdEKcQ6qK6q2Sq5XKaRFS1hUrWWv56Gd_a4Qg3254yA.cache @@ -0,0 +1 @@ +"%f"5xÚÊ’L-³â‰røm½ÕÀóRÞîp–ÖÿB+ \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Vk/VkiJO7hOJhFxqSbinfQ642CFf_cZOrYOkYr4kjyzlJg.cache b/tmp/cache/assets/sprockets/v3.0/Vk/VkiJO7hOJhFxqSbinfQ642CFf_cZOrYOkYr4kjyzlJg.cache new file mode 100644 index 000000000..3081cb732 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/Vk/VkiJO7hOJhFxqSbinfQ642CFf_cZOrYOkYr4kjyzlJg.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/Vn/VnmZ-1fxCapQgB0oXdC_CE0doEqR2YUYdh-_Vyobpbc.cache b/tmp/cache/assets/sprockets/v3.0/Vn/VnmZ-1fxCapQgB0oXdC_CE0doEqR2YUYdh-_Vyobpbc.cache new file mode 100644 index 000000000..85730bc66 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/Vn/VnmZ-1fxCapQgB0oXdC_CE0doEqR2YUYdh-_Vyobpbc.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/Vn/vNoNz4nCEDt4C05tDEXsOi7MvPVO9-HzjY1XAIXxFYQ.cache b/tmp/cache/assets/sprockets/v3.0/Vn/vNoNz4nCEDt4C05tDEXsOi7MvPVO9-HzjY1XAIXxFYQ.cache new file mode 100644 index 000000000..c83361e38 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/Vn/vNoNz4nCEDt4C05tDEXsOi7MvPVO9-HzjY1XAIXxFYQ.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/Vs/VscjoKkjpTgOspq_lufskAtAjcfEEQbtGTm3g2R4BK8.cache b/tmp/cache/assets/sprockets/v3.0/Vs/VscjoKkjpTgOspq_lufskAtAjcfEEQbtGTm3g2R4BK8.cache new file mode 100644 index 000000000..a08ba8ee6 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/Vs/VscjoKkjpTgOspq_lufskAtAjcfEEQbtGTm3g2R4BK8.cache @@ -0,0 +1 @@ +"%¢€±²ýÞ¼äEhóбí`•…1 !|Fgï&½p¬ÿzƒ \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/W4/W4JIG7cNAsGiO7lhf9O6mbJeWldw8q5Psc-G9QwEAFg.cache b/tmp/cache/assets/sprockets/v3.0/W4/W4JIG7cNAsGiO7lhf9O6mbJeWldw8q5Psc-G9QwEAFg.cache new file mode 100644 index 000000000..3081cb732 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/W4/W4JIG7cNAsGiO7lhf9O6mbJeWldw8q5Psc-G9QwEAFg.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/WL/WLCzzH6chkM5b2PjqofuOt1a4fC6vRsJGwAzMk3k6Oo.cache b/tmp/cache/assets/sprockets/v3.0/WL/WLCzzH6chkM5b2PjqofuOt1a4fC6vRsJGwAzMk3k6Oo.cache new file mode 100644 index 000000000..2d9ab8b16 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/WL/WLCzzH6chkM5b2PjqofuOt1a4fC6vRsJGwAzMk3k6Oo.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/WL/WLLXVumgXbhwKc2zMplJXJxNAUiCw4Kbue-q30q3jW4.cache b/tmp/cache/assets/sprockets/v3.0/WL/WLLXVumgXbhwKc2zMplJXJxNAUiCw4Kbue-q30q3jW4.cache new file mode 100644 index 000000000..c1434cb15 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/WL/WLLXVumgXbhwKc2zMplJXJxNAUiCw4Kbue-q30q3jW4.cache @@ -0,0 +1 @@ +"%΋6•5ôÓ4­Í'kJ`çm/¿ 1ËêÅ®tïÝ@ \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/WR/WRoR8Sz0QL-pqAP0WtqqmQ2xdIs0-2BNLJJql_pqnGk.cache b/tmp/cache/assets/sprockets/v3.0/WR/WRoR8Sz0QL-pqAP0WtqqmQ2xdIs0-2BNLJJql_pqnGk.cache new file mode 100644 index 000000000..001abdf8e Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/WR/WRoR8Sz0QL-pqAP0WtqqmQ2xdIs0-2BNLJJql_pqnGk.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/WV/WVLCgkxhvI67xIogpxHNi0rQfMChlmSkmSf-ZthAROs.cache b/tmp/cache/assets/sprockets/v3.0/WV/WVLCgkxhvI67xIogpxHNi0rQfMChlmSkmSf-ZthAROs.cache new file mode 100644 index 000000000..daeecc8ed Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/WV/WVLCgkxhvI67xIogpxHNi0rQfMChlmSkmSf-ZthAROs.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/WV/wV_XLaDTfIZN3mYOt8lLFWkdyxiUYH8vW5SZLUUh5D0.cache b/tmp/cache/assets/sprockets/v3.0/WV/wV_XLaDTfIZN3mYOt8lLFWkdyxiUYH8vW5SZLUUh5D0.cache new file mode 100644 index 000000000..2feeadf30 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/WV/wV_XLaDTfIZN3mYOt8lLFWkdyxiUYH8vW5SZLUUh5D0.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/WZ/WZOk0xOPUFs6K7dB6MBDSyKwhPZXHEK9PiJ5sftPCW0.cache b/tmp/cache/assets/sprockets/v3.0/WZ/WZOk0xOPUFs6K7dB6MBDSyKwhPZXHEK9PiJ5sftPCW0.cache new file mode 100644 index 000000000..edc3384db Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/WZ/WZOk0xOPUFs6K7dB6MBDSyKwhPZXHEK9PiJ5sftPCW0.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/Wb/WBey08A56d6KW7wE3ZWysRe7lKHyeX-v8617v1li5oA.cache b/tmp/cache/assets/sprockets/v3.0/Wb/WBey08A56d6KW7wE3ZWysRe7lKHyeX-v8617v1li5oA.cache new file mode 100644 index 000000000..6ed13f930 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/Wb/WBey08A56d6KW7wE3ZWysRe7lKHyeX-v8617v1li5oA.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/Wb/WbgxTWgLhA4H4DBJJ6Vya7Orm1ehAA23G8PPy2b9J1Q.cache b/tmp/cache/assets/sprockets/v3.0/Wb/WbgxTWgLhA4H4DBJJ6Vya7Orm1ehAA23G8PPy2b9J1Q.cache new file mode 100644 index 000000000..37ec106d3 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/Wb/WbgxTWgLhA4H4DBJJ6Vya7Orm1ehAA23G8PPy2b9J1Q.cache @@ -0,0 +1 @@ +"%¾®é—üv×No<þ!gþ%k¨©·'=ñšoþ²èC \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Wg/WgP7GCCTRn5NZmE16Wogl2L_qpG3HH3BUV0fXzgrCM0.cache b/tmp/cache/assets/sprockets/v3.0/Wg/WgP7GCCTRn5NZmE16Wogl2L_qpG3HH3BUV0fXzgrCM0.cache new file mode 100644 index 000000000..558b05db4 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/Wg/WgP7GCCTRn5NZmE16Wogl2L_qpG3HH3BUV0fXzgrCM0.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/Wg/WgU30NghXUgYXMfC2OsIetLeqgqK8NSiAwBlSKpWNbU.cache b/tmp/cache/assets/sprockets/v3.0/Wg/WgU30NghXUgYXMfC2OsIetLeqgqK8NSiAwBlSKpWNbU.cache new file mode 100644 index 000000000..34f096b6c --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/Wg/WgU30NghXUgYXMfC2OsIetLeqgqK8NSiAwBlSKpWNbU.cache @@ -0,0 +1 @@ +I"‡app/assets/stylesheets/application.scss?type=text/css&pipeline=self&id=875a98a0ea8596c69ed1e25e898666d17c5df41e7710e5c0361ed0f03e46523f:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Wh/WhDIyjWZBd-mPSgFfhRrv4XtU2PBJNbNTX2u1DRY4Ek.cache b/tmp/cache/assets/sprockets/v3.0/Wh/WhDIyjWZBd-mPSgFfhRrv4XtU2PBJNbNTX2u1DRY4Ek.cache new file mode 100644 index 000000000..c70b827f3 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/Wh/WhDIyjWZBd-mPSgFfhRrv4XtU2PBJNbNTX2u1DRY4Ek.cache @@ -0,0 +1 @@ +"%Þ_]MÍX™V³XZx9ß>|åx»a¡p¬­ \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Wi/WiviGJAc-Rb2sM48xYZja2WKKz5-BZO9a7TbV-vpxOY.cache b/tmp/cache/assets/sprockets/v3.0/Wi/WiviGJAc-Rb2sM48xYZja2WKKz5-BZO9a7TbV-vpxOY.cache new file mode 100644 index 000000000..ac1315913 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/Wi/WiviGJAc-Rb2sM48xYZja2WKKz5-BZO9a7TbV-vpxOY.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/Wi/wIUbBHzsQpNoOqsm6uduZso0EpKOdwjI-oY2EZe1jr4.cache b/tmp/cache/assets/sprockets/v3.0/Wi/wIUbBHzsQpNoOqsm6uduZso0EpKOdwjI-oY2EZe1jr4.cache new file mode 100644 index 000000000..c3a733e0a Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/Wi/wIUbBHzsQpNoOqsm6uduZso0EpKOdwjI-oY2EZe1jr4.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/Wn/Wn5YFyzc1d5SmhcxoXjdyAYIfSFA_kOZLeoPcGNdYXA.cache b/tmp/cache/assets/sprockets/v3.0/Wn/Wn5YFyzc1d5SmhcxoXjdyAYIfSFA_kOZLeoPcGNdYXA.cache new file mode 100644 index 000000000..c83361e38 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/Wn/Wn5YFyzc1d5SmhcxoXjdyAYIfSFA_kOZLeoPcGNdYXA.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/Wn/WnBjDGsYEtcUPTBbV-kUD6zyY-euCc69EyC-zYXIRyU.cache b/tmp/cache/assets/sprockets/v3.0/Wn/WnBjDGsYEtcUPTBbV-kUD6zyY-euCc69EyC-zYXIRyU.cache new file mode 100644 index 000000000..fd0306b12 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/Wn/WnBjDGsYEtcUPTBbV-kUD6zyY-euCc69EyC-zYXIRyU.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/Wq/WqEzt__bTeXzXgBKqBlit6zkguT7JOwm2jWLWfWkOW4.cache b/tmp/cache/assets/sprockets/v3.0/Wq/WqEzt__bTeXzXgBKqBlit6zkguT7JOwm2jWLWfWkOW4.cache new file mode 100644 index 000000000..045c8240d --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/Wq/WqEzt__bTeXzXgBKqBlit6zkguT7JOwm2jWLWfWkOW4.cache @@ -0,0 +1 @@ +I"ˆapp/assets/stylesheets/application.scss?type=text/css&pipeline=debug&id=4790ca52a13accb9cae5cb9b66a56f455fa1af9fffcc36808afc6bd4f5fba1b7:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/XB/XB_wQ5Y5r8Ye1tO8qFeKuRKbTbekMOYMIUlutk8qHCg.cache b/tmp/cache/assets/sprockets/v3.0/XB/XB_wQ5Y5r8Ye1tO8qFeKuRKbTbekMOYMIUlutk8qHCg.cache new file mode 100644 index 000000000..5ec1cac06 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/XB/XB_wQ5Y5r8Ye1tO8qFeKuRKbTbekMOYMIUlutk8qHCg.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/XC/XCR7PpQACWURXkKJ-3vXWBvkGlSHzaAWooOpd1ZbFjs.cache b/tmp/cache/assets/sprockets/v3.0/XC/XCR7PpQACWURXkKJ-3vXWBvkGlSHzaAWooOpd1ZbFjs.cache new file mode 100644 index 000000000..fd35996ab Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/XC/XCR7PpQACWURXkKJ-3vXWBvkGlSHzaAWooOpd1ZbFjs.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/XO/XOEAv7hIvVXhbeF54bzLToavExJG37-5ACxyyT2128A.cache b/tmp/cache/assets/sprockets/v3.0/XO/XOEAv7hIvVXhbeF54bzLToavExJG37-5ACxyyT2128A.cache new file mode 100644 index 000000000..7e453732f --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/XO/XOEAv7hIvVXhbeF54bzLToavExJG37-5ACxyyT2128A.cache @@ -0,0 +1,3 @@ +[o:Set: +@hash} +I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"Zprocessors:type=application/javascript&file_type=application/javascript&pipeline=self;TTI"xfile-digest:///Users/kjfitzpatrick/.rvm/gems/ruby-2.5.1/gems/bootstrap-4.1.3/assets/javascripts/bootstrap/button.js;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/XT/XTFOQfR-tUxzOBcL_2MSPachZyj2qaHBRpdDoGPGimA.cache b/tmp/cache/assets/sprockets/v3.0/XT/XTFOQfR-tUxzOBcL_2MSPachZyj2qaHBRpdDoGPGimA.cache new file mode 100644 index 000000000..173256d5f Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/XT/XTFOQfR-tUxzOBcL_2MSPachZyj2qaHBRpdDoGPGimA.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/Xa/XaaDOVkjQIZcBNCLw8tGsWurKpHVnymcLDU3X2Ib4_o.cache b/tmp/cache/assets/sprockets/v3.0/Xa/XaaDOVkjQIZcBNCLw8tGsWurKpHVnymcLDU3X2Ib4_o.cache new file mode 100644 index 000000000..19d43cb7e --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/Xa/XaaDOVkjQIZcBNCLw8tGsWurKpHVnymcLDU3X2Ib4_o.cache @@ -0,0 +1 @@ +I"‡app/assets/stylesheets/application.scss?type=text/css&pipeline=self&id=efbdfd3c0342daf41db7a5f4aeb4756f16835600ef4ab632ca538c3ef90823f9:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Xj/XjV10gRCTBvdyP96E2o9PDuq84bXjfKnTZ4Olu3hIr4.cache b/tmp/cache/assets/sprockets/v3.0/Xj/XjV10gRCTBvdyP96E2o9PDuq84bXjfKnTZ4Olu3hIr4.cache new file mode 100644 index 000000000..440bb33cf Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/Xj/XjV10gRCTBvdyP96E2o9PDuq84bXjfKnTZ4Olu3hIr4.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/Xk/Xkl0f6m5CTNLSQmM8Gagp_CGTvfR_OQQcG-rlbH3Zt4.cache b/tmp/cache/assets/sprockets/v3.0/Xk/Xkl0f6m5CTNLSQmM8Gagp_CGTvfR_OQQcG-rlbH3Zt4.cache new file mode 100644 index 000000000..3081cb732 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/Xk/Xkl0f6m5CTNLSQmM8Gagp_CGTvfR_OQQcG-rlbH3Zt4.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/Xn/Xn2cpzFk1NHBf76BurzdRz-R-5i4Z0cPmRbYPACBnwg.cache b/tmp/cache/assets/sprockets/v3.0/Xn/Xn2cpzFk1NHBf76BurzdRz-R-5i4Z0cPmRbYPACBnwg.cache new file mode 100644 index 000000000..0c019911d Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/Xn/Xn2cpzFk1NHBf76BurzdRz-R-5i4Z0cPmRbYPACBnwg.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/Y3/Y3VXLQawt-uog9xfEqPdi0tbHRIQOnzXkheVVCznhwI.cache b/tmp/cache/assets/sprockets/v3.0/Y3/Y3VXLQawt-uog9xfEqPdi0tbHRIQOnzXkheVVCznhwI.cache new file mode 100644 index 000000000..f501dbf02 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/Y3/Y3VXLQawt-uog9xfEqPdi0tbHRIQOnzXkheVVCznhwI.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/Y7/Y7M4Wy4q7jF3oQz-NnIIcl79t9HclC7SXH3K0E3py50.cache b/tmp/cache/assets/sprockets/v3.0/Y7/Y7M4Wy4q7jF3oQz-NnIIcl79t9HclC7SXH3K0E3py50.cache new file mode 100644 index 000000000..4fe8ebe22 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/Y7/Y7M4Wy4q7jF3oQz-NnIIcl79t9HclC7SXH3K0E3py50.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/YC/YCNE3Anls9Hsk4cwUBJNXZtyxYhi8jCdu0A3ImXtB-E.cache b/tmp/cache/assets/sprockets/v3.0/YC/YCNE3Anls9Hsk4cwUBJNXZtyxYhi8jCdu0A3ImXtB-E.cache new file mode 100644 index 000000000..752e91085 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/YC/YCNE3Anls9Hsk4cwUBJNXZtyxYhi8jCdu0A3ImXtB-E.cache @@ -0,0 +1,2 @@ +"%”Ìã]ä@ÆôL/åc:6µI¬¼˜BŸWFÃ5÷Ñb +æ \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/YC/YCzEblEgxd37HamREb7SIsK9sazFbyFYiVSPaWZ5_Wo.cache b/tmp/cache/assets/sprockets/v3.0/YC/YCzEblEgxd37HamREb7SIsK9sazFbyFYiVSPaWZ5_Wo.cache new file mode 100644 index 000000000..e2128eb18 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/YC/YCzEblEgxd37HamREb7SIsK9sazFbyFYiVSPaWZ5_Wo.cache @@ -0,0 +1 @@ +"%³“?eã`çuïèÏ6sá¥ë©Bg"¾x­_5›Ñ… \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/YC/ycO-VYJEalBU1gXFYit-cW0HiKuy1RhO04liIDm5DWk.cache b/tmp/cache/assets/sprockets/v3.0/YC/ycO-VYJEalBU1gXFYit-cW0HiKuy1RhO04liIDm5DWk.cache new file mode 100644 index 000000000..0db253e09 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/YC/ycO-VYJEalBU1gXFYit-cW0HiKuy1RhO04liIDm5DWk.cache @@ -0,0 +1,4 @@ +{:uriI"‡file://app/assets/images/anise-aroma-art-277253.jpg?type=image/jpeg&id=bad7c1dae378f98d1d043080af30de71dad230d0e8c7fe3ebd5bfae0c150b6c8:ET:load_pathI"app/assets/images;T: filenameI"1app/assets/images/anise-aroma-art-277253.jpg;T: nameI"anise-aroma-art-277253;T:logical_pathI"anise-aroma-art-277253.jpg;T:content_typeI"image/jpeg;T: source0: metadata{: digest"%JNº›KÉòlOç\É(# Ÿ–¸”MæUýt: lengthiC D:dependencieso:Set: +@hash} +I"environment-version;TTI"environment-paths;TTI"rails-env;TTI"4processors:type=image/jpeg&file_type=image/jpeg;TTI"?file-digest://app/assets/images/anise-aroma-art-277253.jpg;TTF:dependencies_digest"%³#žZNv§¦è,XB9¹é²¼íC”«L9Å{ëä:idI"Ebad7c1dae378f98d1d043080af30de71dad230d0e8c7fe3ebd5bfae0c150b6c8;F: +mtimel+¼Hß[ \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/YG/YGVyq9trxKDtRQKbYW0VWppBMzw2FeqSXJBDdKppfpI.cache b/tmp/cache/assets/sprockets/v3.0/YG/YGVyq9trxKDtRQKbYW0VWppBMzw2FeqSXJBDdKppfpI.cache new file mode 100644 index 000000000..30e67f539 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/YG/YGVyq9trxKDtRQKbYW0VWppBMzw2FeqSXJBDdKppfpI.cache @@ -0,0 +1 @@ +"%ÕòvH["ܪ‹ß«˜±zFñ«_— n`•lZ¯9‰ \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/YJ/YJRhOO1pSWxzd2rDwDj7GXppUYxADEDvumgltQ2wLxU.cache b/tmp/cache/assets/sprockets/v3.0/YJ/YJRhOO1pSWxzd2rDwDj7GXppUYxADEDvumgltQ2wLxU.cache new file mode 100644 index 000000000..cb21140b5 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/YJ/YJRhOO1pSWxzd2rDwDj7GXppUYxADEDvumgltQ2wLxU.cache @@ -0,0 +1 @@ +I"ˆapp/assets/stylesheets/application.scss?type=text/css&pipeline=debug&id=8eaa16b05906a568985d31dda76e31620195a18140e509c559783afb76838de1:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/YN/YNaTrJhsP6rzEO7ZgrMj1g1vO_8sjI3rgljXq1iF9IY.cache b/tmp/cache/assets/sprockets/v3.0/YN/YNaTrJhsP6rzEO7ZgrMj1g1vO_8sjI3rgljXq1iF9IY.cache new file mode 100644 index 000000000..6ed13f930 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/YN/YNaTrJhsP6rzEO7ZgrMj1g1vO_8sjI3rgljXq1iF9IY.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/YP/YPqGj8y2uBEHO5bdBnvokzJAuyAcFyYBavNyp6zW70s.cache b/tmp/cache/assets/sprockets/v3.0/YP/YPqGj8y2uBEHO5bdBnvokzJAuyAcFyYBavNyp6zW70s.cache new file mode 100644 index 000000000..df9978477 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/YP/YPqGj8y2uBEHO5bdBnvokzJAuyAcFyYBavNyp6zW70s.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/YU/YUuJ3jrg9z4JW9npi35IjhOmofbZXO7JCPKtrNlPA8M.cache b/tmp/cache/assets/sprockets/v3.0/YU/YUuJ3jrg9z4JW9npi35IjhOmofbZXO7JCPKtrNlPA8M.cache new file mode 100644 index 000000000..87cf95e28 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/YU/YUuJ3jrg9z4JW9npi35IjhOmofbZXO7JCPKtrNlPA8M.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/Y_/Y_mmD8_YzIiQKch7KMlEIrrAsQLfZ38QobvH94ZuaU4.cache b/tmp/cache/assets/sprockets/v3.0/Y_/Y_mmD8_YzIiQKch7KMlEIrrAsQLfZ38QobvH94ZuaU4.cache new file mode 100644 index 000000000..cce148112 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/Y_/Y_mmD8_YzIiQKch7KMlEIrrAsQLfZ38QobvH94ZuaU4.cache @@ -0,0 +1 @@ +I"‡app/assets/stylesheets/application.scss?type=text/css&pipeline=self&id=a7f153eca57b52615029ae441af72ffbde332fe734af195897cd2856d6b9c766:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Ya/YAU7c3sCoiRVaGHvXtxk3lgISQR3buGZljS2MgQmLv8.cache b/tmp/cache/assets/sprockets/v3.0/Ya/YAU7c3sCoiRVaGHvXtxk3lgISQR3buGZljS2MgQmLv8.cache new file mode 100644 index 000000000..3ec97166a Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/Ya/YAU7c3sCoiRVaGHvXtxk3lgISQR3buGZljS2MgQmLv8.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/Ya/YakiAs41Ku9AQaihqX2DFjkogKhtxMVUG3MIiH2VzKA.cache b/tmp/cache/assets/sprockets/v3.0/Ya/YakiAs41Ku9AQaihqX2DFjkogKhtxMVUG3MIiH2VzKA.cache new file mode 100644 index 000000000..3fcbfb9f2 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/Ya/YakiAs41Ku9AQaihqX2DFjkogKhtxMVUG3MIiH2VzKA.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/Yx/YxUEiWGHDGf2yyHX_YtWUEm2DRTyunfwyeldib4TwtE.cache b/tmp/cache/assets/sprockets/v3.0/Yx/YxUEiWGHDGf2yyHX_YtWUEm2DRTyunfwyeldib4TwtE.cache new file mode 100644 index 000000000..31342c9b7 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/Yx/YxUEiWGHDGf2yyHX_YtWUEm2DRTyunfwyeldib4TwtE.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/Yz/Yze-gLUSBOE5yBI18D03lAxXXvcCYThQFXa-GJL5pAk.cache b/tmp/cache/assets/sprockets/v3.0/Yz/Yze-gLUSBOE5yBI18D03lAxXXvcCYThQFXa-GJL5pAk.cache new file mode 100644 index 000000000..7310279d6 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/Yz/Yze-gLUSBOE5yBI18D03lAxXXvcCYThQFXa-GJL5pAk.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/Z-/Z-uz47k2H0_H3EA0gzfn2qBy6KehNc3dGffvgMO9zk0.cache b/tmp/cache/assets/sprockets/v3.0/Z-/Z-uz47k2H0_H3EA0gzfn2qBy6KehNc3dGffvgMO9zk0.cache new file mode 100644 index 000000000..de8a1a585 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/Z-/Z-uz47k2H0_H3EA0gzfn2qBy6KehNc3dGffvgMO9zk0.cache @@ -0,0 +1 @@ +I"‡app/assets/stylesheets/application.scss?type=text/css&pipeline=self&id=fb6a919c3fa047b0942a36b917f644adadf3b3ce5df9806a681e5590cb935088:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Z-/Z-yLZ9pPBbes04UjTgSw8FmIkZAGzS1z8TEiMjOOj2w.cache b/tmp/cache/assets/sprockets/v3.0/Z-/Z-yLZ9pPBbes04UjTgSw8FmIkZAGzS1z8TEiMjOOj2w.cache new file mode 100644 index 000000000..440bb33cf Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/Z-/Z-yLZ9pPBbes04UjTgSw8FmIkZAGzS1z8TEiMjOOj2w.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/ZC/ZCuePg--G27G-Rt1uHJ0mqH7Apf_DlUqM0CjdTkFRqo.cache b/tmp/cache/assets/sprockets/v3.0/ZC/ZCuePg--G27G-Rt1uHJ0mqH7Apf_DlUqM0CjdTkFRqo.cache new file mode 100644 index 000000000..149a4b152 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/ZC/ZCuePg--G27G-Rt1uHJ0mqH7Apf_DlUqM0CjdTkFRqo.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/ZR/ZRXnn7acKhDHnksBsD5CcrzGSMQ7Q8F_iYQbqtk92Ww.cache b/tmp/cache/assets/sprockets/v3.0/ZR/ZRXnn7acKhDHnksBsD5CcrzGSMQ7Q8F_iYQbqtk92Ww.cache new file mode 100644 index 000000000..3b0ae685f --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/ZR/ZRXnn7acKhDHnksBsD5CcrzGSMQ7Q8F_iYQbqtk92Ww.cache @@ -0,0 +1,3 @@ +[o:Set: +@hash} +I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"Zprocessors:type=application/javascript&file_type=application/javascript&pipeline=self;TTI"yfile-digest:///Users/kjfitzpatrick/.rvm/gems/ruby-2.5.1/gems/jquery-rails-4.3.3/vendor/assets/javascripts/jquery3.js;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/ZR/Zrk3jIMWrDvEExHCNHM1JdCuzYi6wI9m7eQTBp5v6fk.cache b/tmp/cache/assets/sprockets/v3.0/ZR/Zrk3jIMWrDvEExHCNHM1JdCuzYi6wI9m7eQTBp5v6fk.cache new file mode 100644 index 000000000..55e85976f --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/ZR/Zrk3jIMWrDvEExHCNHM1JdCuzYi6wI9m7eQTBp5v6fk.cache @@ -0,0 +1 @@ +I"‡app/assets/stylesheets/application.scss?type=text/css&pipeline=self&id=a6a27fcfb9f6b54502dce88fdeae6a43fe5f099b0020e7d429e352afeaa38a75:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Zg/Zg0PMM__P06Atdc8s5pz2bxkVQ5UD1BhXJ6I324cOig.cache b/tmp/cache/assets/sprockets/v3.0/Zg/Zg0PMM__P06Atdc8s5pz2bxkVQ5UD1BhXJ6I324cOig.cache new file mode 100644 index 000000000..5c1df86e5 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/Zg/Zg0PMM__P06Atdc8s5pz2bxkVQ5UD1BhXJ6I324cOig.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/Zo/ZOd1tVFA_cODJUUrQUTyHF1BAiLKjS7d7aYa72PNoW0.cache b/tmp/cache/assets/sprockets/v3.0/Zo/ZOd1tVFA_cODJUUrQUTyHF1BAiLKjS7d7aYa72PNoW0.cache new file mode 100644 index 000000000..82c70830f --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/Zo/ZOd1tVFA_cODJUUrQUTyHF1BAiLKjS7d7aYa72PNoW0.cache @@ -0,0 +1 @@ +I"‡app/assets/stylesheets/application.scss?type=text/css&pipeline=self&id=9d17a60cc08186991f3b8e578d11e41e90f264ef82ffa250910e62b4d26fc73e:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Zo/ZoVuSBlLLdl8_sGUZIifZm5T4HrKzOltNjRDq1JNMx4.cache b/tmp/cache/assets/sprockets/v3.0/Zo/ZoVuSBlLLdl8_sGUZIifZm5T4HrKzOltNjRDq1JNMx4.cache new file mode 100644 index 000000000..2800ad3b2 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/Zo/ZoVuSBlLLdl8_sGUZIifZm5T4HrKzOltNjRDq1JNMx4.cache @@ -0,0 +1 @@ +"%ã°ÄB˜üšûôÈ™o¹$'®Aäd›“L¤•™xR¸U \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Zy/ZynMsoxpkiJ9VwG4M6pA7RBArrNBKy8gvlGJn66djOw.cache b/tmp/cache/assets/sprockets/v3.0/Zy/ZynMsoxpkiJ9VwG4M6pA7RBArrNBKy8gvlGJn66djOw.cache new file mode 100644 index 000000000..ffdb6323f Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/Zy/ZynMsoxpkiJ9VwG4M6pA7RBArrNBKy8gvlGJn66djOw.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/_-/_-Cjkllwv-CWccPnjMfQ2wYp6un_2nk6tOhwZKPHMhY.cache b/tmp/cache/assets/sprockets/v3.0/_-/_-Cjkllwv-CWccPnjMfQ2wYp6un_2nk6tOhwZKPHMhY.cache new file mode 100644 index 000000000..c83361e38 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/_-/_-Cjkllwv-CWccPnjMfQ2wYp6un_2nk6tOhwZKPHMhY.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/_0/_0e9xXuq4PoasWekgOcF4c6Q1KwtE_q60-DFHtBg3pg.cache b/tmp/cache/assets/sprockets/v3.0/_0/_0e9xXuq4PoasWekgOcF4c6Q1KwtE_q60-DFHtBg3pg.cache new file mode 100644 index 000000000..6ed13f930 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/_0/_0e9xXuq4PoasWekgOcF4c6Q1KwtE_q60-DFHtBg3pg.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/_4/_4Hmoe5KCcckCpNzMJA-k2iMvVasOGOq7EmU1ElPWQM.cache b/tmp/cache/assets/sprockets/v3.0/_4/_4Hmoe5KCcckCpNzMJA-k2iMvVasOGOq7EmU1ElPWQM.cache new file mode 100644 index 000000000..ef1b875c2 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/_4/_4Hmoe5KCcckCpNzMJA-k2iMvVasOGOq7EmU1ElPWQM.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/_A/_AG2p4wo33kXgizJae6IVeBBgo7gfHKhRh4WMrgMdvM.cache b/tmp/cache/assets/sprockets/v3.0/_A/_AG2p4wo33kXgizJae6IVeBBgo7gfHKhRh4WMrgMdvM.cache new file mode 100644 index 000000000..18840d529 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/_A/_AG2p4wo33kXgizJae6IVeBBgo7gfHKhRh4WMrgMdvM.cache @@ -0,0 +1 @@ +"%Ñ)-‚‡>82Bé»®¸áÐÙóùxEZr¹UÔÛ \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/_A/_adpkvCiaDVI--pUsc3fzZ9SXwI_UfbR7DOke6Y_ilU.cache b/tmp/cache/assets/sprockets/v3.0/_A/_adpkvCiaDVI--pUsc3fzZ9SXwI_UfbR7DOke6Y_ilU.cache new file mode 100644 index 000000000..50108494d --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/_A/_adpkvCiaDVI--pUsc3fzZ9SXwI_UfbR7DOke6Y_ilU.cache @@ -0,0 +1 @@ +I"ˆapp/assets/stylesheets/application.scss?type=text/css&pipeline=debug&id=48d3370a309c3da1bae8b1094512e0729ffe75b5cb978ada9ebb757e528ece78:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/_F/_FckZB-PTdpMBvDs3A0WcVymi-UHq-0PUTC9wDl2A38.cache b/tmp/cache/assets/sprockets/v3.0/_F/_FckZB-PTdpMBvDs3A0WcVymi-UHq-0PUTC9wDl2A38.cache new file mode 100644 index 000000000..c83361e38 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/_F/_FckZB-PTdpMBvDs3A0WcVymi-UHq-0PUTC9wDl2A38.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/_H/_HhW2Kr9y_vmEnnYgxYwqSALehu9LCWrFfUnQ2AIm3g.cache b/tmp/cache/assets/sprockets/v3.0/_H/_HhW2Kr9y_vmEnnYgxYwqSALehu9LCWrFfUnQ2AIm3g.cache new file mode 100644 index 000000000..395c47f45 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/_H/_HhW2Kr9y_vmEnnYgxYwqSALehu9LCWrFfUnQ2AIm3g.cache @@ -0,0 +1,2 @@ +"%‡B¶_ù²æ_(¤ „ç³‰Ø e°¿¥ +b³~¿¾·áÇCÓ \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/_I/_IWqjQ-6ZZ9DRTt9ix1kBIqdLEF7zlFwKOcHIBbjTjs.cache b/tmp/cache/assets/sprockets/v3.0/_I/_IWqjQ-6ZZ9DRTt9ix1kBIqdLEF7zlFwKOcHIBbjTjs.cache new file mode 100644 index 000000000..440bb33cf Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/_I/_IWqjQ-6ZZ9DRTt9ix1kBIqdLEF7zlFwKOcHIBbjTjs.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/_O/_OwBeSG1pvQPYFJyPM7d4OLg73ah4hbNdijYEq8UQUo.cache b/tmp/cache/assets/sprockets/v3.0/_O/_OwBeSG1pvQPYFJyPM7d4OLg73ah4hbNdijYEq8UQUo.cache new file mode 100644 index 000000000..2b2e33dc4 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/_O/_OwBeSG1pvQPYFJyPM7d4OLg73ah4hbNdijYEq8UQUo.cache @@ -0,0 +1 @@ +"%I´~Øñü"g©¨ÃëÖHŠ=!B<{DÍ{Z1µå \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/_R/_RSvzeDuQJv-3AnPJ0k06C67BMLHqAmvZ3jJ6HwJgVQ.cache b/tmp/cache/assets/sprockets/v3.0/_R/_RSvzeDuQJv-3AnPJ0k06C67BMLHqAmvZ3jJ6HwJgVQ.cache new file mode 100644 index 000000000..f8c7c67d9 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/_R/_RSvzeDuQJv-3AnPJ0k06C67BMLHqAmvZ3jJ6HwJgVQ.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/_U/_U6B-ah3yK8h9LPVWJjiY7iV6PwYupjZbMNiD3rrJCI.cache b/tmp/cache/assets/sprockets/v3.0/_U/_U6B-ah3yK8h9LPVWJjiY7iV6PwYupjZbMNiD3rrJCI.cache new file mode 100644 index 000000000..acff5880a Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/_U/_U6B-ah3yK8h9LPVWJjiY7iV6PwYupjZbMNiD3rrJCI.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/_c/_czvMq4Xu6vokdBF5Qp44moGnuhmVzTfnbnrbn4txxM.cache b/tmp/cache/assets/sprockets/v3.0/_c/_czvMq4Xu6vokdBF5Qp44moGnuhmVzTfnbnrbn4txxM.cache new file mode 100644 index 000000000..970f8d472 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/_c/_czvMq4Xu6vokdBF5Qp44moGnuhmVzTfnbnrbn4txxM.cache @@ -0,0 +1,2 @@ +"%bVÜÆã§›½u"Çˈ¨uõÀôøaìPã¸õGc +1EÇ \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/_e/_en3vRdOGUx2DoQ4g--KcinyuhO8NyGE0EV915JG9_M.cache b/tmp/cache/assets/sprockets/v3.0/_e/_en3vRdOGUx2DoQ4g--KcinyuhO8NyGE0EV915JG9_M.cache new file mode 100644 index 000000000..a4c21e66e Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/_e/_en3vRdOGUx2DoQ4g--KcinyuhO8NyGE0EV915JG9_M.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/_n/_N67q9pg6Mx54YSDlcUkTwRR9DfjmWAooy8nYZ__6Sk.cache b/tmp/cache/assets/sprockets/v3.0/_n/_N67q9pg6Mx54YSDlcUkTwRR9DfjmWAooy8nYZ__6Sk.cache new file mode 100644 index 000000000..720b3f30b --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/_n/_N67q9pg6Mx54YSDlcUkTwRR9DfjmWAooy8nYZ__6Sk.cache @@ -0,0 +1 @@ +I"…app/assets/javascripts/application.js?type=application/javascript&id=57c10ad2b87fc9b9711ee3a05839cc9e2f8080a8ede356c1f16777d350c9a5b8:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/_n/_nYsJkBfG9Dbmfw8Ib4If3HmFaPVWCp1YDm9AAFk-GE.cache b/tmp/cache/assets/sprockets/v3.0/_n/_nYsJkBfG9Dbmfw8Ib4If3HmFaPVWCp1YDm9AAFk-GE.cache new file mode 100644 index 000000000..6cf61c9d7 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/_n/_nYsJkBfG9Dbmfw8Ib4If3HmFaPVWCp1YDm9AAFk-GE.cache @@ -0,0 +1 @@ +I"‡app/assets/stylesheets/application.scss?type=text/css&pipeline=self&id=217894300ac8415471dfad77b8838c1504c78e3f1a096728e596509f4bff7a0f:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/_p/_p4-s3Ej1AQuEcM9_R6u5HHquqdBvEwRlTtLTTiuew0.cache b/tmp/cache/assets/sprockets/v3.0/_p/_p4-s3Ej1AQuEcM9_R6u5HHquqdBvEwRlTtLTTiuew0.cache new file mode 100644 index 000000000..5e8d2f051 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/_p/_p4-s3Ej1AQuEcM9_R6u5HHquqdBvEwRlTtLTTiuew0.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/a6/a61bHwCdhzw1VVq_LDNqoAaGSiyNBEITxZmybDbvfQc.cache b/tmp/cache/assets/sprockets/v3.0/a6/a61bHwCdhzw1VVq_LDNqoAaGSiyNBEITxZmybDbvfQc.cache new file mode 100644 index 000000000..feb73a64a --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/a6/a61bHwCdhzw1VVq_LDNqoAaGSiyNBEITxZmybDbvfQc.cache @@ -0,0 +1 @@ +"%ôfç¸)óF¡ÓöÊ#H§~ï|ßÒ‡2ºŠüòɖ܉ \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/a9/a9cSAFjHv1afP4vdTbqKgV53xkPm2tCblZdMg5YW69k.cache b/tmp/cache/assets/sprockets/v3.0/a9/a9cSAFjHv1afP4vdTbqKgV53xkPm2tCblZdMg5YW69k.cache new file mode 100644 index 000000000..cf33d79f7 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/a9/a9cSAFjHv1afP4vdTbqKgV53xkPm2tCblZdMg5YW69k.cache @@ -0,0 +1 @@ +I"ˆapp/assets/stylesheets/application.scss?type=text/css&pipeline=debug&id=51a322652902bc283c701704c7a3c3c897977a31c0eb771308248c0ea983da79:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/aD/aDwryBi84cKQzlmMAbImgbl877EP7HJmhgpj18w6v9o.cache b/tmp/cache/assets/sprockets/v3.0/aD/aDwryBi84cKQzlmMAbImgbl877EP7HJmhgpj18w6v9o.cache new file mode 100644 index 000000000..f7d048a59 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/aD/aDwryBi84cKQzlmMAbImgbl877EP7HJmhgpj18w6v9o.cache @@ -0,0 +1 @@ +"% Úí9Ñá#Üäh×NV!µ·ß©:½Mwæ>ØŒG‹ °JG \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/aJ/aJLEylVu6Vmx149IPBUdQ5s4ReYUUv0mmUxo8LBrpX4.cache b/tmp/cache/assets/sprockets/v3.0/aJ/aJLEylVu6Vmx149IPBUdQ5s4ReYUUv0mmUxo8LBrpX4.cache new file mode 100644 index 000000000..3b18c7c7d Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/aJ/aJLEylVu6Vmx149IPBUdQ5s4ReYUUv0mmUxo8LBrpX4.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/al/al_76WjZVAC3dXOLddM6YPb1Q7Z9SLRhnDroX-dLCXI.cache b/tmp/cache/assets/sprockets/v3.0/al/al_76WjZVAC3dXOLddM6YPb1Q7Z9SLRhnDroX-dLCXI.cache new file mode 100644 index 000000000..68296b40f --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/al/al_76WjZVAC3dXOLddM6YPb1Q7Z9SLRhnDroX-dLCXI.cache @@ -0,0 +1 @@ +"%~ò¬Î~ùLŽ’<›§À›{ñ|!xZ¬][ \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/au/auZ5AW1ewpxUsQuiHG2_ym5fWLPzNe5jgp-Dc4WtGz0.cache b/tmp/cache/assets/sprockets/v3.0/au/auZ5AW1ewpxUsQuiHG2_ym5fWLPzNe5jgp-Dc4WtGz0.cache new file mode 100644 index 000000000..1e9822149 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/au/auZ5AW1ewpxUsQuiHG2_ym5fWLPzNe5jgp-Dc4WtGz0.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/b8/b8flI6JaSv2w7xSL6lFIUhayMcaBRDFovfBqyCYpJX0.cache b/tmp/cache/assets/sprockets/v3.0/b8/b8flI6JaSv2w7xSL6lFIUhayMcaBRDFovfBqyCYpJX0.cache new file mode 100644 index 000000000..d8d971107 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/b8/b8flI6JaSv2w7xSL6lFIUhayMcaBRDFovfBqyCYpJX0.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/bE/bE8hACbbvtRjMCxfgyPFgXV7CS7SBopWFVGJ2gE8xng.cache b/tmp/cache/assets/sprockets/v3.0/bE/bE8hACbbvtRjMCxfgyPFgXV7CS7SBopWFVGJ2gE8xng.cache new file mode 100644 index 000000000..8df2ce6c8 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/bE/bE8hACbbvtRjMCxfgyPFgXV7CS7SBopWFVGJ2gE8xng.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/bW/bWGCXv9kbyq50TEht2ldlVWWsSsXHjT-jbg5K5NBpu8.cache b/tmp/cache/assets/sprockets/v3.0/bW/bWGCXv9kbyq50TEht2ldlVWWsSsXHjT-jbg5K5NBpu8.cache new file mode 100644 index 000000000..a843314d8 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/bW/bWGCXv9kbyq50TEht2ldlVWWsSsXHjT-jbg5K5NBpu8.cache @@ -0,0 +1 @@ +I"‡app/assets/stylesheets/application.scss?type=text/css&pipeline=self&id=fd1d78ce7a063243ed0affefc657be8e93f0613203d27561b69488d4cc4aecc3:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/bZ/BZXMbsUaw-2kZyI1IVIjZcld4TibpCmKkyhHvscPeO4.cache b/tmp/cache/assets/sprockets/v3.0/bZ/BZXMbsUaw-2kZyI1IVIjZcld4TibpCmKkyhHvscPeO4.cache new file mode 100644 index 000000000..a52aea677 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/bZ/BZXMbsUaw-2kZyI1IVIjZcld4TibpCmKkyhHvscPeO4.cache @@ -0,0 +1 @@ +"%q s:]ÕÕUfSyä#vst\Œ€< iÉXÉäEÚ \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/bZ/bZBnhE4bzWZi-E7GphFmEEfq6u1qqe_6KyQdjqFNLyo.cache b/tmp/cache/assets/sprockets/v3.0/bZ/bZBnhE4bzWZi-E7GphFmEEfq6u1qqe_6KyQdjqFNLyo.cache new file mode 100644 index 000000000..3081cb732 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/bZ/bZBnhE4bzWZi-E7GphFmEEfq6u1qqe_6KyQdjqFNLyo.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/bc/bcauuQhoydiEghILSliWMAsbJfw4I8Dox-rrTD8zTw0.cache b/tmp/cache/assets/sprockets/v3.0/bc/bcauuQhoydiEghILSliWMAsbJfw4I8Dox-rrTD8zTw0.cache new file mode 100644 index 000000000..c83361e38 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/bc/bcauuQhoydiEghILSliWMAsbJfw4I8Dox-rrTD8zTw0.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/bi/BI9lSB0ReuoneGfRQm2Dd6EB1XC-vM0EzDPOZuCS7EI.cache b/tmp/cache/assets/sprockets/v3.0/bi/BI9lSB0ReuoneGfRQm2Dd6EB1XC-vM0EzDPOZuCS7EI.cache new file mode 100644 index 000000000..5ffc0de20 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/bi/BI9lSB0ReuoneGfRQm2Dd6EB1XC-vM0EzDPOZuCS7EI.cache @@ -0,0 +1 @@ +I"Î/Users/kjfitzpatrick/.rvm/gems/ruby-2.5.1/gems/actionview-5.2.1/lib/assets/compiled/rails-ujs.js?type=application/javascript&pipeline=self&id=58a686a3f4ceeb6b2230623881b85ab7448b7d299ae80bdce48a3d619bb47002:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/bi/biFEdebwPEcGOj5RdyWsyT5hknGjtzkRUXSZLP-kbBA.cache b/tmp/cache/assets/sprockets/v3.0/bi/biFEdebwPEcGOj5RdyWsyT5hknGjtzkRUXSZLP-kbBA.cache new file mode 100644 index 000000000..6b392c088 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/bi/biFEdebwPEcGOj5RdyWsyT5hknGjtzkRUXSZLP-kbBA.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/bm/BMwNTXXkJgP0hUVmpiCBjH9TcK1RFrDyHwbdRHRmrDI.cache b/tmp/cache/assets/sprockets/v3.0/bm/BMwNTXXkJgP0hUVmpiCBjH9TcK1RFrDyHwbdRHRmrDI.cache new file mode 100644 index 000000000..a108cb5c5 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/bm/BMwNTXXkJgP0hUVmpiCBjH9TcK1RFrDyHwbdRHRmrDI.cache @@ -0,0 +1 @@ +I"‡app/assets/stylesheets/application.scss?type=text/css&pipeline=self&id=e269699547794ebb9ba2ba5229dfd0d86db67c1e92cd2dc15fe1a2270d8cd944:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/bm/bmHVCwOD9iSEe6AeV6XHLDudBGft_fh_oYeZK2ng__I.cache b/tmp/cache/assets/sprockets/v3.0/bm/bmHVCwOD9iSEe6AeV6XHLDudBGft_fh_oYeZK2ng__I.cache new file mode 100644 index 000000000..6d8e70a42 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/bm/bmHVCwOD9iSEe6AeV6XHLDudBGft_fh_oYeZK2ng__I.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/bm/bmqCzpcTVcKMtJnaRBMmtYVsFXcbZtecBl8m1r7N5Fg.cache b/tmp/cache/assets/sprockets/v3.0/bm/bmqCzpcTVcKMtJnaRBMmtYVsFXcbZtecBl8m1r7N5Fg.cache new file mode 100644 index 000000000..61b88e58b Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/bm/bmqCzpcTVcKMtJnaRBMmtYVsFXcbZtecBl8m1r7N5Fg.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/bp/bpg9IO1OEipZ9hJe5G19_WKgrXLUJQHYVbKDbO6f0PU.cache b/tmp/cache/assets/sprockets/v3.0/bp/bpg9IO1OEipZ9hJe5G19_WKgrXLUJQHYVbKDbO6f0PU.cache new file mode 100644 index 000000000..05fe0c8df Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/bp/bpg9IO1OEipZ9hJe5G19_WKgrXLUJQHYVbKDbO6f0PU.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/bp/bpxfd8_ASyL8quJq_tTPm57p2AzwQ19-pgY7BGo4Ryg.cache b/tmp/cache/assets/sprockets/v3.0/bp/bpxfd8_ASyL8quJq_tTPm57p2AzwQ19-pgY7BGo4Ryg.cache new file mode 100644 index 000000000..8acd8f15e Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/bp/bpxfd8_ASyL8quJq_tTPm57p2AzwQ19-pgY7BGo4Ryg.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/by/bYR_kzE5s99hJxhdDXRbnbfbBI-Cph7DbFurrFTs3O4.cache b/tmp/cache/assets/sprockets/v3.0/by/bYR_kzE5s99hJxhdDXRbnbfbBI-Cph7DbFurrFTs3O4.cache new file mode 100644 index 000000000..c83361e38 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/by/bYR_kzE5s99hJxhdDXRbnbfbBI-Cph7DbFurrFTs3O4.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/by/byVZYRQFOgFHsqFP4Q_YLPaR3V_zeuavUnKAuxPFCL8.cache b/tmp/cache/assets/sprockets/v3.0/by/byVZYRQFOgFHsqFP4Q_YLPaR3V_zeuavUnKAuxPFCL8.cache new file mode 100644 index 000000000..64f46ee39 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/by/byVZYRQFOgFHsqFP4Q_YLPaR3V_zeuavUnKAuxPFCL8.cache @@ -0,0 +1 @@ +I"Ö/Users/kjfitzpatrick/.rvm/gems/ruby-2.5.1/gems/bootstrap-4.1.3/assets/javascripts/bootstrap-sprockets.js?type=application/javascript&pipeline=self&id=08f16ca75324858afc94ef28ec022da6daeada0ba6d09d7fde94beb377cc59a4:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/c0/c0B0zsO4sBVaeygMase1iTlERUKRN1n2lPDRbVZ8OQM.cache b/tmp/cache/assets/sprockets/v3.0/c0/c0B0zsO4sBVaeygMase1iTlERUKRN1n2lPDRbVZ8OQM.cache new file mode 100644 index 000000000..38715a3cc Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/c0/c0B0zsO4sBVaeygMase1iTlERUKRN1n2lPDRbVZ8OQM.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/cN/cNlm3wxl5DJpxA45JWNR37kim0Y4fbsH3ee5t8rCpn4.cache b/tmp/cache/assets/sprockets/v3.0/cN/cNlm3wxl5DJpxA45JWNR37kim0Y4fbsH3ee5t8rCpn4.cache new file mode 100644 index 000000000..cb32670a2 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/cN/cNlm3wxl5DJpxA45JWNR37kim0Y4fbsH3ee5t8rCpn4.cache @@ -0,0 +1 @@ +"%ûRst;XS€€ùVN<1â Ì 4%å$ñ1¶£N|Ó \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/cN/cnQEBGkeKvSSmITwxpXGLPVzdlIWiEiWBEV23_t9YR0.cache b/tmp/cache/assets/sprockets/v3.0/cN/cnQEBGkeKvSSmITwxpXGLPVzdlIWiEiWBEV23_t9YR0.cache new file mode 100644 index 000000000..35fc3b07b Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/cN/cnQEBGkeKvSSmITwxpXGLPVzdlIWiEiWBEV23_t9YR0.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/cQ/cQ7ZtoqdSQXBc02ix6Z1cZAK4mvNT36FnAjELMRevk4.cache b/tmp/cache/assets/sprockets/v3.0/cQ/cQ7ZtoqdSQXBc02ix6Z1cZAK4mvNT36FnAjELMRevk4.cache new file mode 100644 index 000000000..d90f0df0c Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/cQ/cQ7ZtoqdSQXBc02ix6Z1cZAK4mvNT36FnAjELMRevk4.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/ca/cafjet5_472ORcv3jih2lbN5AzkuAWbxmfXZqogB1g4.cache b/tmp/cache/assets/sprockets/v3.0/ca/cafjet5_472ORcv3jih2lbN5AzkuAWbxmfXZqogB1g4.cache new file mode 100644 index 000000000..b2567f170 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/ca/cafjet5_472ORcv3jih2lbN5AzkuAWbxmfXZqogB1g4.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/cr/cr6a4mcXR-ykmLQRHcBH_hwHKdvM2AHJAbO1aAhdZks.cache b/tmp/cache/assets/sprockets/v3.0/cr/cr6a4mcXR-ykmLQRHcBH_hwHKdvM2AHJAbO1aAhdZks.cache new file mode 100644 index 000000000..e0d2883d3 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/cr/cr6a4mcXR-ykmLQRHcBH_hwHKdvM2AHJAbO1aAhdZks.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/cr/cruMLY0nhEnHLmePjWb3NT022N2yCeXPrYZcaDpjhzc.cache b/tmp/cache/assets/sprockets/v3.0/cr/cruMLY0nhEnHLmePjWb3NT022N2yCeXPrYZcaDpjhzc.cache new file mode 100644 index 000000000..ab02f5d50 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/cr/cruMLY0nhEnHLmePjWb3NT022N2yCeXPrYZcaDpjhzc.cache @@ -0,0 +1 @@ +I"ˆapp/assets/stylesheets/application.scss?type=text/css&pipeline=debug&id=441350ef92ab909eba2f29f1b97de92b534ced87bd6fa466a1746fe3b1afc2ea:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/dA/dA3TQw6NMniHFAl38LC_iS_5Zmr9hRgjldvenSVpUqk.cache b/tmp/cache/assets/sprockets/v3.0/dA/dA3TQw6NMniHFAl38LC_iS_5Zmr9hRgjldvenSVpUqk.cache new file mode 100644 index 000000000..3081cb732 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/dA/dA3TQw6NMniHFAl38LC_iS_5Zmr9hRgjldvenSVpUqk.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/dA/dax03UO4HmN7t4G_4BkN_eDiu_Td5HSQxA33LXi-v8I.cache b/tmp/cache/assets/sprockets/v3.0/dA/dax03UO4HmN7t4G_4BkN_eDiu_Td5HSQxA33LXi-v8I.cache new file mode 100644 index 000000000..2bc1c2d5b --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/dA/dax03UO4HmN7t4G_4BkN_eDiu_Td5HSQxA33LXi-v8I.cache @@ -0,0 +1 @@ +"%Ö=tÌ÷¾ìNÏá7Ù7fj]XÅiº*7³¨* !ípC \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/dR/dRZdxFrsGvFku3jBAEi9uSenSPNqo84fprptt7m5OIc.cache b/tmp/cache/assets/sprockets/v3.0/dR/dRZdxFrsGvFku3jBAEi9uSenSPNqo84fprptt7m5OIc.cache new file mode 100644 index 000000000..ef1b875c2 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/dR/dRZdxFrsGvFku3jBAEi9uSenSPNqo84fprptt7m5OIc.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/dm/dMr00x4ZjZKi-9w9x-NDkGf0x76YY99fGf6XNenfvK8.cache b/tmp/cache/assets/sprockets/v3.0/dm/dMr00x4ZjZKi-9w9x-NDkGf0x76YY99fGf6XNenfvK8.cache new file mode 100644 index 000000000..6afe102ff Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/dm/dMr00x4ZjZKi-9w9x-NDkGf0x76YY99fGf6XNenfvK8.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/dm/dmlM-VT922gT2ZfbTlEA90iEMafJ32XRQzDQIPygreU.cache b/tmp/cache/assets/sprockets/v3.0/dm/dmlM-VT922gT2ZfbTlEA90iEMafJ32XRQzDQIPygreU.cache new file mode 100644 index 000000000..f50e4b5e6 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/dm/dmlM-VT922gT2ZfbTlEA90iEMafJ32XRQzDQIPygreU.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/dp/dPtJM1n6zw9SpbGVn7len-vM-6b3K_tVUCl3Y_8SsZ0.cache b/tmp/cache/assets/sprockets/v3.0/dp/dPtJM1n6zw9SpbGVn7len-vM-6b3K_tVUCl3Y_8SsZ0.cache new file mode 100644 index 000000000..114c32862 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/dp/dPtJM1n6zw9SpbGVn7len-vM-6b3K_tVUCl3Y_8SsZ0.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/dp/dpuWxBP7SaCatbNr9GqYt5tCVkTqqLBOn6obtzEN9Rg.cache b/tmp/cache/assets/sprockets/v3.0/dp/dpuWxBP7SaCatbNr9GqYt5tCVkTqqLBOn6obtzEN9Rg.cache new file mode 100644 index 000000000..b7000ad55 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/dp/dpuWxBP7SaCatbNr9GqYt5tCVkTqqLBOn6obtzEN9Rg.cache @@ -0,0 +1 @@ +"%þŽÃ—›‡Ådi³ïÐò‰Dú(ÊA(·-¿´ÕÃᯧš \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/dq/DqL3qrVqL8prLDxX8IwWijwTuQ1j6KkR8dkASKPZKX0.cache b/tmp/cache/assets/sprockets/v3.0/dq/DqL3qrVqL8prLDxX8IwWijwTuQ1j6KkR8dkASKPZKX0.cache new file mode 100644 index 000000000..088e13f33 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/dq/DqL3qrVqL8prLDxX8IwWijwTuQ1j6KkR8dkASKPZKX0.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/dq/dqcn-44ZwQpJ4JrXcY_kNb6s7R1DvIQUrNLZXBW0vQM.cache b/tmp/cache/assets/sprockets/v3.0/dq/dqcn-44ZwQpJ4JrXcY_kNb6s7R1DvIQUrNLZXBW0vQM.cache new file mode 100644 index 000000000..cd045a264 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/dq/dqcn-44ZwQpJ4JrXcY_kNb6s7R1DvIQUrNLZXBW0vQM.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/e1/e1EcNNgFD8nTf-YE4UXOuVGsQBBnJqHn_giCiMMna6A.cache b/tmp/cache/assets/sprockets/v3.0/e1/e1EcNNgFD8nTf-YE4UXOuVGsQBBnJqHn_giCiMMna6A.cache new file mode 100644 index 000000000..eb02baec0 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/e1/e1EcNNgFD8nTf-YE4UXOuVGsQBBnJqHn_giCiMMna6A.cache @@ -0,0 +1,3 @@ +[o:Set: +@hash} +I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"Zprocessors:type=application/javascript&file_type=application/javascript&pipeline=self;TTI"zfile-digest:///Users/kjfitzpatrick/.rvm/gems/ruby-2.5.1/gems/bootstrap-4.1.3/assets/javascripts/bootstrap/dropdown.js;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/eC/eCjxkHDqTgKfjZm154gyuJLyY1xntaFHOQxbjtuTJ_w.cache b/tmp/cache/assets/sprockets/v3.0/eC/eCjxkHDqTgKfjZm154gyuJLyY1xntaFHOQxbjtuTJ_w.cache new file mode 100644 index 000000000..383bdf1c8 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/eC/eCjxkHDqTgKfjZm154gyuJLyY1xntaFHOQxbjtuTJ_w.cache @@ -0,0 +1 @@ +"%ˆÎÎ/ó.?ȲÖ0-H–äqNÔc2¨Ïß{MŸrb• \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/eD/eDyC9Iq_VxghPESkiV54GpFM9wgF8eCbORJpIZtUjGI.cache b/tmp/cache/assets/sprockets/v3.0/eD/eDyC9Iq_VxghPESkiV54GpFM9wgF8eCbORJpIZtUjGI.cache new file mode 100644 index 000000000..cc116de2a --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/eD/eDyC9Iq_VxghPESkiV54GpFM9wgF8eCbORJpIZtUjGI.cache @@ -0,0 +1 @@ +"%G‰àvUÅ:éÞ7@<ºõ–ñ@ÀY¬®ÖÄ6X«lÁNl) \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/eE/eEqOZTFM9qqAIlpenEckl-tCmrg2MwHpz90wP08COZw.cache b/tmp/cache/assets/sprockets/v3.0/eE/eEqOZTFM9qqAIlpenEckl-tCmrg2MwHpz90wP08COZw.cache new file mode 100644 index 000000000..0b908ff47 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/eE/eEqOZTFM9qqAIlpenEckl-tCmrg2MwHpz90wP08COZw.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/eE/eePhICVp3yWIGrcOVhfLns-c7fS6AXvtTl1abmLlnN0.cache b/tmp/cache/assets/sprockets/v3.0/eE/eePhICVp3yWIGrcOVhfLns-c7fS6AXvtTl1abmLlnN0.cache new file mode 100644 index 000000000..5eabeb4ed Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/eE/eePhICVp3yWIGrcOVhfLns-c7fS6AXvtTl1abmLlnN0.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/eG/eGTBPycXnV6iwJUKwN8qwIEcC9CudEiouIlGOlPjhcc.cache b/tmp/cache/assets/sprockets/v3.0/eG/eGTBPycXnV6iwJUKwN8qwIEcC9CudEiouIlGOlPjhcc.cache new file mode 100644 index 000000000..8b31fb39a Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/eG/eGTBPycXnV6iwJUKwN8qwIEcC9CudEiouIlGOlPjhcc.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/eY/eYh71nJMXVNnkywkfus-vPeu88Uerukvt6X6IXn54_I.cache b/tmp/cache/assets/sprockets/v3.0/eY/eYh71nJMXVNnkywkfus-vPeu88Uerukvt6X6IXn54_I.cache new file mode 100644 index 000000000..25192d74d --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/eY/eYh71nJMXVNnkywkfus-vPeu88Uerukvt6X6IXn54_I.cache @@ -0,0 +1 @@ +"%qþ…G L‚cFݘ,mó꼫”*` Ìú \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/em/emgw9AmV--rCqY1mTJHfiXjmSKFeUvtC_pEP9X8KT30.cache b/tmp/cache/assets/sprockets/v3.0/em/emgw9AmV--rCqY1mTJHfiXjmSKFeUvtC_pEP9X8KT30.cache new file mode 100644 index 000000000..82146e0f7 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/em/emgw9AmV--rCqY1mTJHfiXjmSKFeUvtC_pEP9X8KT30.cache @@ -0,0 +1 @@ +"%lm ãm97ÝV5½ÎäûCâ[ŒÏßÒÂå~«×Ãýg \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/ep/eposEpDmxs53HpB5gF0-zzIVkY11uoOjJzzQm_5uVw0.cache b/tmp/cache/assets/sprockets/v3.0/ep/eposEpDmxs53HpB5gF0-zzIVkY11uoOjJzzQm_5uVw0.cache new file mode 100644 index 000000000..0e371b2ac Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/ep/eposEpDmxs53HpB5gF0-zzIVkY11uoOjJzzQm_5uVw0.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/es/esdHX2aaLBOD3g7wBHBnwprOOvVEwkLZeDPuDzbqPW4.cache b/tmp/cache/assets/sprockets/v3.0/es/esdHX2aaLBOD3g7wBHBnwprOOvVEwkLZeDPuDzbqPW4.cache new file mode 100644 index 000000000..397600715 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/es/esdHX2aaLBOD3g7wBHBnwprOOvVEwkLZeDPuDzbqPW4.cache @@ -0,0 +1 @@ +I"ˆapp/assets/stylesheets/application.scss?type=text/css&pipeline=debug&id=8c0e5f23bf4b95e4303eefa6c4deef10bde296ab0e3c9f2d9938c205d459d7b2:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/eu/EuSByWlXsTm5aJHwytzasQwvWy92W3k0ju-S0nSnYLU.cache b/tmp/cache/assets/sprockets/v3.0/eu/EuSByWlXsTm5aJHwytzasQwvWy92W3k0ju-S0nSnYLU.cache new file mode 100644 index 000000000..440bb33cf Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/eu/EuSByWlXsTm5aJHwytzasQwvWy92W3k0ju-S0nSnYLU.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/eu/eu-1ZsXY7LBKX2bdDMJm2gWkJNZfj7a_v4eTw1CbfmI.cache b/tmp/cache/assets/sprockets/v3.0/eu/eu-1ZsXY7LBKX2bdDMJm2gWkJNZfj7a_v4eTw1CbfmI.cache new file mode 100644 index 000000000..1a173721d --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/eu/eu-1ZsXY7LBKX2bdDMJm2gWkJNZfj7a_v4eTw1CbfmI.cache @@ -0,0 +1 @@ +"%ª>kÖËJ?òôum:ŠJnGuP:#”€ÒPR½‚Ö²ò \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/ez/ez1-kIN4ILee9NAvSR4vMQx4SAv-d1jxvlueiC0c1sA.cache b/tmp/cache/assets/sprockets/v3.0/ez/ez1-kIN4ILee9NAvSR4vMQx4SAv-d1jxvlueiC0c1sA.cache new file mode 100644 index 000000000..912959608 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/ez/ez1-kIN4ILee9NAvSR4vMQx4SAv-d1jxvlueiC0c1sA.cache @@ -0,0 +1,3 @@ +[o:Set: +@hash} +I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"4processors:type=image/jpeg&file_type=image/jpeg;TTI"Jfile-digest://app/assets/images/black-pepper-bright-colors-940302.jpg;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/ez/ezoEqdrHNXgDcMUqW49xzCiPDG0xvNjR_ON_KUKaqCo.cache b/tmp/cache/assets/sprockets/v3.0/ez/ezoEqdrHNXgDcMUqW49xzCiPDG0xvNjR_ON_KUKaqCo.cache new file mode 100644 index 000000000..9f307b674 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/ez/ezoEqdrHNXgDcMUqW49xzCiPDG0xvNjR_ON_KUKaqCo.cache @@ -0,0 +1 @@ +I"‡app/assets/stylesheets/application.scss?type=text/css&pipeline=self&id=9300f37660815a5bdf8288d9c23fcde113311faefa405c2d7ea88b81be797064:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/f6/f66F1Yk70t6vMbu3lVOwqffGc6e8PQNL0VMfryqOAG4.cache b/tmp/cache/assets/sprockets/v3.0/f6/f66F1Yk70t6vMbu3lVOwqffGc6e8PQNL0VMfryqOAG4.cache new file mode 100644 index 000000000..961dfac53 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/f6/f66F1Yk70t6vMbu3lVOwqffGc6e8PQNL0VMfryqOAG4.cache @@ -0,0 +1 @@ +"%2É3pŸ€,«iÚÛ%}̧Œ`y0>i1›µì \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/fV/fVfgKlmMdz7E0CmdzudXVwKkmXoQKasDR5VuAvTkeU4.cache b/tmp/cache/assets/sprockets/v3.0/fV/fVfgKlmMdz7E0CmdzudXVwKkmXoQKasDR5VuAvTkeU4.cache new file mode 100644 index 000000000..f11905ff3 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/fV/fVfgKlmMdz7E0CmdzudXVwKkmXoQKasDR5VuAvTkeU4.cache @@ -0,0 +1 @@ +I"‹app/assets/images/black-pepper-bright-colors-940302.jpg?type=image/jpeg&id=1b436ad1753e8eb528ba9994c7cf34dd62939b31c4a475ce2d517f578972065e:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/fY/fY3P5_vm7OnIPcEa3GdQE5L9mbjsPAo6sDz21ndMIeY.cache b/tmp/cache/assets/sprockets/v3.0/fY/fY3P5_vm7OnIPcEa3GdQE5L9mbjsPAo6sDz21ndMIeY.cache new file mode 100644 index 000000000..440bb33cf Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/fY/fY3P5_vm7OnIPcEa3GdQE5L9mbjsPAo6sDz21ndMIeY.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/fb/fbXMvUHVQWo1YsY2SoilzqHasrJOlhNpAhK67b4vYnY.cache b/tmp/cache/assets/sprockets/v3.0/fb/fbXMvUHVQWo1YsY2SoilzqHasrJOlhNpAhK67b4vYnY.cache new file mode 100644 index 000000000..c83361e38 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/fb/fbXMvUHVQWo1YsY2SoilzqHasrJOlhNpAhK67b4vYnY.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/fc/fCf53D1_JjGswPHvzmrVHQzk74OVqWLlpNEkJNHrwa8.cache b/tmp/cache/assets/sprockets/v3.0/fc/fCf53D1_JjGswPHvzmrVHQzk74OVqWLlpNEkJNHrwa8.cache new file mode 100644 index 000000000..ac57c581f Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/fc/fCf53D1_JjGswPHvzmrVHQzk74OVqWLlpNEkJNHrwa8.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/fc/fCwOfuBHIK8QcGeb6o7Ew1Mqt5unDcIoVYEym0wzAfw.cache b/tmp/cache/assets/sprockets/v3.0/fc/fCwOfuBHIK8QcGeb6o7Ew1Mqt5unDcIoVYEym0wzAfw.cache new file mode 100644 index 000000000..477fa3cbd Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/fc/fCwOfuBHIK8QcGeb6o7Ew1Mqt5unDcIoVYEym0wzAfw.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/fc/fcnDzFf2XLfc8yTheSls3VcNEnRRw4zgiik9oHvCe9g.cache b/tmp/cache/assets/sprockets/v3.0/fc/fcnDzFf2XLfc8yTheSls3VcNEnRRw4zgiik9oHvCe9g.cache new file mode 100644 index 000000000..14ce4225e --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/fc/fcnDzFf2XLfc8yTheSls3VcNEnRRw4zgiik9oHvCe9g.cache @@ -0,0 +1 @@ +"%Š·²ÀŠvÿ\MÔª°J]vÙgøòœmÿŠÅ*ua \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/fg/FG-f4VzeugmYECAVqJ4-bhFYGpfEqS38UYLE3nMLJ0o.cache b/tmp/cache/assets/sprockets/v3.0/fg/FG-f4VzeugmYECAVqJ4-bhFYGpfEqS38UYLE3nMLJ0o.cache new file mode 100644 index 000000000..27ee4c7e7 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/fg/FG-f4VzeugmYECAVqJ4-bhFYGpfEqS38UYLE3nMLJ0o.cache @@ -0,0 +1 @@ +I"ˆapp/assets/stylesheets/application.scss?type=text/css&pipeline=debug&id=8a3d9aa525cbe6057c8eb3c78f23b9f0670f6b1481e8ffd4bbbd4791b2aa568e:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/fg/fgGNYEarqe2BTyGaEvar3BdtLp2gakew81q-JUBnMq8.cache b/tmp/cache/assets/sprockets/v3.0/fg/fgGNYEarqe2BTyGaEvar3BdtLp2gakew81q-JUBnMq8.cache new file mode 100644 index 000000000..22b44bce2 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/fg/fgGNYEarqe2BTyGaEvar3BdtLp2gakew81q-JUBnMq8.cache @@ -0,0 +1 @@ +"% ó¶˜ý¦õ@&±º_UU}÷ºð7ª‚í`q¯Õp \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/fh/fhA_XXszw010BpXsNXBAs2S7V0P8fVfdoMoMdlHRiw0.cache b/tmp/cache/assets/sprockets/v3.0/fh/fhA_XXszw010BpXsNXBAs2S7V0P8fVfdoMoMdlHRiw0.cache new file mode 100644 index 000000000..ac45020ef --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/fh/fhA_XXszw010BpXsNXBAs2S7V0P8fVfdoMoMdlHRiw0.cache @@ -0,0 +1 @@ +"%Y¥ŒÝz°Lðe77Ó¦+x˜‘#ÚÓê0x¡k@ÃYuÄ \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/fo/FOgPNk2ay5x9EPG1bKGpx1RYTt8FUX7IV2kwEzwFzLg.cache b/tmp/cache/assets/sprockets/v3.0/fo/FOgPNk2ay5x9EPG1bKGpx1RYTt8FUX7IV2kwEzwFzLg.cache new file mode 100644 index 000000000..3513a4c2b Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/fo/FOgPNk2ay5x9EPG1bKGpx1RYTt8FUX7IV2kwEzwFzLg.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/fo/foBo56fX7RfEsXUmBZIhy-_CYhU2yG8ZJrN9sO-Y6Ko.cache b/tmp/cache/assets/sprockets/v3.0/fo/foBo56fX7RfEsXUmBZIhy-_CYhU2yG8ZJrN9sO-Y6Ko.cache new file mode 100644 index 000000000..2fa74fe62 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/fo/foBo56fX7RfEsXUmBZIhy-_CYhU2yG8ZJrN9sO-Y6Ko.cache @@ -0,0 +1 @@ +"%òô4JrvÁpÙ)y[9MŠ]û~Û畾„³o¬ \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/fq/fq0Fsc-FKw2dk6YC5SmgfQud4FqYRMnKq2TBuY53LYo.cache b/tmp/cache/assets/sprockets/v3.0/fq/fq0Fsc-FKw2dk6YC5SmgfQud4FqYRMnKq2TBuY53LYo.cache new file mode 100644 index 000000000..23a65f4d5 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/fq/fq0Fsc-FKw2dk6YC5SmgfQud4FqYRMnKq2TBuY53LYo.cache @@ -0,0 +1 @@ +"%]EÈüWq†ÞRG€dJÅÈX»É`'5l„»r鈭_‰^ \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/g2/g2EGbkjiIKaxd8d4iS-YvGBwGTukrhNNWENIVd6M_gQ.cache b/tmp/cache/assets/sprockets/v3.0/g2/g2EGbkjiIKaxd8d4iS-YvGBwGTukrhNNWENIVd6M_gQ.cache new file mode 100644 index 000000000..fa77ab659 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/g2/g2EGbkjiIKaxd8d4iS-YvGBwGTukrhNNWENIVd6M_gQ.cache @@ -0,0 +1 @@ +I"‡app/assets/stylesheets/application.scss?type=text/css&pipeline=self&id=d34c554b1092f84df0b18b0e1c0f867fec3a5b9fa2934180803d77ed3c54887c:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/g7/g7grlJ82zUpNkKzR9XhrK10ZPW-1osERjlfqHU2P5QM.cache b/tmp/cache/assets/sprockets/v3.0/g7/g7grlJ82zUpNkKzR9XhrK10ZPW-1osERjlfqHU2P5QM.cache new file mode 100644 index 000000000..c83361e38 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/g7/g7grlJ82zUpNkKzR9XhrK10ZPW-1osERjlfqHU2P5QM.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/gF/gFZxGz-lDtKacTFmEoZujt_CQB7eTqbeDgVcd95_8jA.cache b/tmp/cache/assets/sprockets/v3.0/gF/gFZxGz-lDtKacTFmEoZujt_CQB7eTqbeDgVcd95_8jA.cache new file mode 100644 index 000000000..63c2a2a32 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/gF/gFZxGz-lDtKacTFmEoZujt_CQB7eTqbeDgVcd95_8jA.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/gO/gO2jva3AkcK0dsl6dLG5sQ7vHpQ7fIbb9UxDqdrufbE.cache b/tmp/cache/assets/sprockets/v3.0/gO/gO2jva3AkcK0dsl6dLG5sQ7vHpQ7fIbb9UxDqdrufbE.cache new file mode 100644 index 000000000..9d96e1e43 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/gO/gO2jva3AkcK0dsl6dLG5sQ7vHpQ7fIbb9UxDqdrufbE.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/g_/g__NaEXDYErtm8iATIs0hS8x9dIXgp4fd0r0GlaYN8g.cache b/tmp/cache/assets/sprockets/v3.0/g_/g__NaEXDYErtm8iATIs0hS8x9dIXgp4fd0r0GlaYN8g.cache new file mode 100644 index 000000000..144e19e51 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/g_/g__NaEXDYErtm8iATIs0hS8x9dIXgp4fd0r0GlaYN8g.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/gm/gmlee_bUjIkSWU6JDHKVtjliux6kivnP5B--t20WEEE.cache b/tmp/cache/assets/sprockets/v3.0/gm/gmlee_bUjIkSWU6JDHKVtjliux6kivnP5B--t20WEEE.cache new file mode 100644 index 000000000..f6bbc8041 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/gm/gmlee_bUjIkSWU6JDHKVtjliux6kivnP5B--t20WEEE.cache @@ -0,0 +1 @@ +I"ˆapp/assets/stylesheets/application.scss?type=text/css&pipeline=debug&id=4befe873097f46c5b67e47855fe51e39590adc6ba504945b3ef1fa65f1f430aa:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/gp/gpLuHp4WcH2zaxF5x8zbqhqpOdbeqNShMNJBc3caakI.cache b/tmp/cache/assets/sprockets/v3.0/gp/gpLuHp4WcH2zaxF5x8zbqhqpOdbeqNShMNJBc3caakI.cache new file mode 100644 index 000000000..6ed13f930 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/gp/gpLuHp4WcH2zaxF5x8zbqhqpOdbeqNShMNJBc3caakI.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/gr/gr2gc-oZvOwFgXEtq9-H-qOIp80lR1HgdDLbXQQzeR8.cache b/tmp/cache/assets/sprockets/v3.0/gr/gr2gc-oZvOwFgXEtq9-H-qOIp80lR1HgdDLbXQQzeR8.cache new file mode 100644 index 000000000..16526ec4e Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/gr/gr2gc-oZvOwFgXEtq9-H-qOIp80lR1HgdDLbXQQzeR8.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/gv/gvDQchXRL1HZor5ZfNgIwncOWzEKuvgj4lR5XoNaA-I.cache b/tmp/cache/assets/sprockets/v3.0/gv/gvDQchXRL1HZor5ZfNgIwncOWzEKuvgj4lR5XoNaA-I.cache new file mode 100644 index 000000000..7d70a64be --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/gv/gvDQchXRL1HZor5ZfNgIwncOWzEKuvgj4lR5XoNaA-I.cache @@ -0,0 +1 @@ +"%3’î‹´¹N¶¦JFoäjÕb¿Û ûj‘Cq™{:U \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/gw/gwH6myB7bqW3jMXEEJzUXCuo_rVzEa9UKMdLcowA7TU.cache b/tmp/cache/assets/sprockets/v3.0/gw/gwH6myB7bqW3jMXEEJzUXCuo_rVzEa9UKMdLcowA7TU.cache new file mode 100644 index 000000000..fd2cd9c2c Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/gw/gwH6myB7bqW3jMXEEJzUXCuo_rVzEa9UKMdLcowA7TU.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/gz/GZtad9TTdICryP6UKPRuDf9tM38MwOfFl6qTfPppFk8.cache b/tmp/cache/assets/sprockets/v3.0/gz/GZtad9TTdICryP6UKPRuDf9tM38MwOfFl6qTfPppFk8.cache new file mode 100644 index 000000000..5484295f7 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/gz/GZtad9TTdICryP6UKPRuDf9tM38MwOfFl6qTfPppFk8.cache @@ -0,0 +1 @@ +I"‡app/assets/stylesheets/application.scss?type=text/css&pipeline=self&id=41268c67568b7afebdcbbf4e526a5786e776306ea7e2c6cb3f2174c6fb45c566:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/gz/gzrzfx2x3iH3nPw1ZxmoJn8ps0L3AzzVTc4pajmSNWQ.cache b/tmp/cache/assets/sprockets/v3.0/gz/gzrzfx2x3iH3nPw1ZxmoJn8ps0L3AzzVTc4pajmSNWQ.cache new file mode 100644 index 000000000..21829ef25 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/gz/gzrzfx2x3iH3nPw1ZxmoJn8ps0L3AzzVTc4pajmSNWQ.cache @@ -0,0 +1 @@ +"%"ãsD0PK #.NT˜©}´,DM†ÅMv:Tg_³g \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/h-/h-i-u-3bc8lubBsWyvQLf5EqneZBb-IEZFMhBmnUlhY.cache b/tmp/cache/assets/sprockets/v3.0/h-/h-i-u-3bc8lubBsWyvQLf5EqneZBb-IEZFMhBmnUlhY.cache new file mode 100644 index 000000000..b00028c81 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/h-/h-i-u-3bc8lubBsWyvQLf5EqneZBb-IEZFMhBmnUlhY.cache @@ -0,0 +1 @@ +"%•Ìõ)óLs¦–ÝiúÝ8ý_íä©m–ÙýœI‹ \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/h0/h0Pvh93WZehL4nKtZk731y22syRW_-r-7OM4WOBml6w.cache b/tmp/cache/assets/sprockets/v3.0/h0/h0Pvh93WZehL4nKtZk731y22syRW_-r-7OM4WOBml6w.cache new file mode 100644 index 000000000..118d8355f Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/h0/h0Pvh93WZehL4nKtZk731y22syRW_-r-7OM4WOBml6w.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/hN/hNDh0aEXhugcQVijiuRrmZ4xE7d21jzDVe4JskeLkDg.cache b/tmp/cache/assets/sprockets/v3.0/hN/hNDh0aEXhugcQVijiuRrmZ4xE7d21jzDVe4JskeLkDg.cache new file mode 100644 index 000000000..b62991a97 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/hN/hNDh0aEXhugcQVijiuRrmZ4xE7d21jzDVe4JskeLkDg.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/hQ/hQ8Rz9lVNAAThN_rY1QY0WdvkwJSwf44T2uUJxqKzVs.cache b/tmp/cache/assets/sprockets/v3.0/hQ/hQ8Rz9lVNAAThN_rY1QY0WdvkwJSwf44T2uUJxqKzVs.cache new file mode 100644 index 000000000..a672be3e2 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/hQ/hQ8Rz9lVNAAThN_rY1QY0WdvkwJSwf44T2uUJxqKzVs.cache @@ -0,0 +1 @@ +I"ˆapp/assets/stylesheets/application.scss?type=text/css&pipeline=debug&id=f8a90de854fcc03b667ba7efb9175c89fc87bd80461836b3ad8d25a287c53581:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/hd/hddknXdga4DidMcZyqEbn7Xq-Q5GQvBByQwqGM8v7-k.cache b/tmp/cache/assets/sprockets/v3.0/hd/hddknXdga4DidMcZyqEbn7Xq-Q5GQvBByQwqGM8v7-k.cache new file mode 100644 index 000000000..c4bd503b3 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/hd/hddknXdga4DidMcZyqEbn7Xq-Q5GQvBByQwqGM8v7-k.cache @@ -0,0 +1,4 @@ +{:uriI"’file://app/assets/images/black-pepper-bright-colors-940302.jpg?type=image/jpeg&id=a125fe0ffa2aa76178d8b17e05566509fd189342ce1bd4b2df331511b54f07c9:ET:load_pathI"app/assets/images;T: filenameI"–T÷¤×_½AÀ \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/mW/mWXB8lmMj8B1dr2DwTcSxScMFgPIGRr1pFYmantrJ1Y.cache b/tmp/cache/assets/sprockets/v3.0/mW/mWXB8lmMj8B1dr2DwTcSxScMFgPIGRr1pFYmantrJ1Y.cache new file mode 100644 index 000000000..07b08778b --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/mW/mWXB8lmMj8B1dr2DwTcSxScMFgPIGRr1pFYmantrJ1Y.cache @@ -0,0 +1 @@ +I"‡app/assets/stylesheets/application.scss?type=text/css&pipeline=self&id=347ebb6ba965fc001bdf7bd9c218d943658ce5b26fc8a8e04c90618f595d005d:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/mY/mYvAsYa1wqQlr8uC70iXSDuVtgEdp19ZnV06kbh8prs.cache b/tmp/cache/assets/sprockets/v3.0/mY/mYvAsYa1wqQlr8uC70iXSDuVtgEdp19ZnV06kbh8prs.cache new file mode 100644 index 000000000..65e871f52 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/mY/mYvAsYa1wqQlr8uC70iXSDuVtgEdp19ZnV06kbh8prs.cache @@ -0,0 +1 @@ +I"ˆapp/assets/stylesheets/application.scss?type=text/css&pipeline=debug&id=40c00a954897903f15283965bb71b3c58fa77d6eaf36aaeb3b05ba37c635b8b4:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/n9/n9ANRNS7jHSnVpJ8KZbQTmNa6xIehZgsDPadiAG7Uic.cache b/tmp/cache/assets/sprockets/v3.0/n9/n9ANRNS7jHSnVpJ8KZbQTmNa6xIehZgsDPadiAG7Uic.cache new file mode 100644 index 000000000..726625558 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/n9/n9ANRNS7jHSnVpJ8KZbQTmNa6xIehZgsDPadiAG7Uic.cache @@ -0,0 +1 @@ +"%vŒÂ½…• uæ§LCD*ë¯rú°ºþM­Ü/ \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/nA/NAkBHqJ1pDCimXBsTATUxK5zrLEkb-p0v2ggASQuVUg.cache b/tmp/cache/assets/sprockets/v3.0/nA/NAkBHqJ1pDCimXBsTATUxK5zrLEkb-p0v2ggASQuVUg.cache new file mode 100644 index 000000000..6ed13f930 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/nA/NAkBHqJ1pDCimXBsTATUxK5zrLEkb-p0v2ggASQuVUg.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/nA/nAL1dZJOzod9nxLW_zUEyIHsB4o9fa0gRcxXLHIwJbQ.cache b/tmp/cache/assets/sprockets/v3.0/nA/nAL1dZJOzod9nxLW_zUEyIHsB4o9fa0gRcxXLHIwJbQ.cache new file mode 100644 index 000000000..20ddd6bce --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/nA/nAL1dZJOzod9nxLW_zUEyIHsB4o9fa0gRcxXLHIwJbQ.cache @@ -0,0 +1,3 @@ +[o:Set: +@hash} +I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"Zprocessors:type=application/javascript&file_type=application/javascript&pipeline=self;TTI"wfile-digest:///Users/kjfitzpatrick/.rvm/gems/ruby-2.5.1/gems/bootstrap-4.1.3/assets/javascripts/bootstrap/modal.js;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/nG/nGzSf-6H_GQmVvgG5OxgE7Q03vzB4oAim6oSo4uENHU.cache b/tmp/cache/assets/sprockets/v3.0/nG/nGzSf-6H_GQmVvgG5OxgE7Q03vzB4oAim6oSo4uENHU.cache new file mode 100644 index 000000000..0c3c98657 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/nG/nGzSf-6H_GQmVvgG5OxgE7Q03vzB4oAim6oSo4uENHU.cache @@ -0,0 +1 @@ +"%Å€¸ÁÔQÌõTXçËcνšîƒß1®­LG°sÓùfK< \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/nI/NiTogztBpZk56N1n2FL-ylGGPfPDE-Y-3eLPYiK7aj4.cache b/tmp/cache/assets/sprockets/v3.0/nI/NiTogztBpZk56N1n2FL-ylGGPfPDE-Y-3eLPYiK7aj4.cache new file mode 100644 index 000000000..d359de857 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/nI/NiTogztBpZk56N1n2FL-ylGGPfPDE-Y-3eLPYiK7aj4.cache @@ -0,0 +1 @@ +I"‡app/assets/stylesheets/application.scss?type=text/css&pipeline=self&id=d5cce7acd1e80aa9c2ed03c7fa71250e6f7286c6a1c8e9b0bc1c59f66a281574:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/nI/nIMG18rlT4wZB3STmV93Q_XaEdhgT7USw7S3Sv0YK6w.cache b/tmp/cache/assets/sprockets/v3.0/nI/nIMG18rlT4wZB3STmV93Q_XaEdhgT7USw7S3Sv0YK6w.cache new file mode 100644 index 000000000..566310691 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/nI/nIMG18rlT4wZB3STmV93Q_XaEdhgT7USw7S3Sv0YK6w.cache @@ -0,0 +1,3 @@ +[o:Set: +@hash} +I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"Zprocessors:type=application/javascript&file_type=application/javascript&pipeline=self;TTI"{file-digest:///Users/kjfitzpatrick/.rvm/gems/ruby-2.5.1/gems/bootstrap-4.1.3/assets/javascripts/bootstrap/scrollspy.js;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/nN/nNmgSqv1fXabcMFU6sotGDYZ7CGSe3QIDPc1YMBC4iA.cache b/tmp/cache/assets/sprockets/v3.0/nN/nNmgSqv1fXabcMFU6sotGDYZ7CGSe3QIDPc1YMBC4iA.cache new file mode 100644 index 000000000..1dddbd8ed --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/nN/nNmgSqv1fXabcMFU6sotGDYZ7CGSe3QIDPc1YMBC4iA.cache @@ -0,0 +1 @@ +"%.›1j\ ¯*cs]gÈ»­=ò^¨¹ö¢‚¬ÖnÐ \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/ne/nen3wci7G2laugDmB3bXGg7A8nNxP3JhCJcYjEjns3E.cache b/tmp/cache/assets/sprockets/v3.0/ne/nen3wci7G2laugDmB3bXGg7A8nNxP3JhCJcYjEjns3E.cache new file mode 100644 index 000000000..b7000ad55 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/ne/nen3wci7G2laugDmB3bXGg7A8nNxP3JhCJcYjEjns3E.cache @@ -0,0 +1 @@ +"%þŽÃ—›‡Ådi³ïÐò‰Dú(ÊA(·-¿´ÕÃᯧš \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/nl/nlyEPB-ij213cmZd7xola-yp69AS3AvviITE-_3CYeA.cache b/tmp/cache/assets/sprockets/v3.0/nl/nlyEPB-ij213cmZd7xola-yp69AS3AvviITE-_3CYeA.cache new file mode 100644 index 000000000..4019d5b67 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/nl/nlyEPB-ij213cmZd7xola-yp69AS3AvviITE-_3CYeA.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/o4/o4cYgBrQ3FbuZjAjqK6NaK95cs2VSA1Z5zjQI8KqAOU.cache b/tmp/cache/assets/sprockets/v3.0/o4/o4cYgBrQ3FbuZjAjqK6NaK95cs2VSA1Z5zjQI8KqAOU.cache new file mode 100644 index 000000000..56fe10d40 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/o4/o4cYgBrQ3FbuZjAjqK6NaK95cs2VSA1Z5zjQI8KqAOU.cache @@ -0,0 +1 @@ +"%Ýñ×.ÝÙÀazܶï™L|æF®*´·‘*ˆW \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/o6/o6zI7QgNe2putSzC2Kmxwpmq92e9-b-CPKv6HuvTTFQ.cache b/tmp/cache/assets/sprockets/v3.0/o6/o6zI7QgNe2putSzC2Kmxwpmq92e9-b-CPKv6HuvTTFQ.cache new file mode 100644 index 000000000..76a5d8a79 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/o6/o6zI7QgNe2putSzC2Kmxwpmq92e9-b-CPKv6HuvTTFQ.cache @@ -0,0 +1 @@ +"%X%l]~hÖéùLÂqÁO!q´^šÏí©ÉlóÒÿ \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/oB/oBZwGUuv7__nGG590c__DxyJlq7f39EVKj5wuj5_f_E.cache b/tmp/cache/assets/sprockets/v3.0/oB/oBZwGUuv7__nGG590c__DxyJlq7f39EVKj5wuj5_f_E.cache new file mode 100644 index 000000000..3081cb732 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/oB/oBZwGUuv7__nGG590c__DxyJlq7f39EVKj5wuj5_f_E.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/oJ/oJ5faqTQwnBPjGyWWyBZVn916lh7kFy7mQBA5Evl9m8.cache b/tmp/cache/assets/sprockets/v3.0/oJ/oJ5faqTQwnBPjGyWWyBZVn916lh7kFy7mQBA5Evl9m8.cache new file mode 100644 index 000000000..fcf7d9081 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/oJ/oJ5faqTQwnBPjGyWWyBZVn916lh7kFy7mQBA5Evl9m8.cache @@ -0,0 +1 @@ +I"‹app/assets/images/black-pepper-bright-colors-940302.jpg?type=image/jpeg&id=a125fe0ffa2aa76178d8b17e05566509fd189342ce1bd4b2df331511b54f07c9:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/oJ/oJ8UkyDPDkVxEsLzZr1yTnjdwnSrMp9idiwi4QU3zWY.cache b/tmp/cache/assets/sprockets/v3.0/oJ/oJ8UkyDPDkVxEsLzZr1yTnjdwnSrMp9idiwi4QU3zWY.cache new file mode 100644 index 000000000..b89ff4c89 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/oJ/oJ8UkyDPDkVxEsLzZr1yTnjdwnSrMp9idiwi4QU3zWY.cache @@ -0,0 +1 @@ +"%G€àè&ûô‹«‚ìåh ^ôl<»¦NÛQ›o-‰ì \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/oO/OoHkTjtFjDmz7GyHvflhzQeIFFqyRXe09dA7wRunjck.cache b/tmp/cache/assets/sprockets/v3.0/oO/OoHkTjtFjDmz7GyHvflhzQeIFFqyRXe09dA7wRunjck.cache new file mode 100644 index 000000000..440bb33cf Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/oO/OoHkTjtFjDmz7GyHvflhzQeIFFqyRXe09dA7wRunjck.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/oO/oOoMXeKjzYgrSjp53bPIU-9Fg1lwZ1ZOb0mLHFfYRgo.cache b/tmp/cache/assets/sprockets/v3.0/oO/oOoMXeKjzYgrSjp53bPIU-9Fg1lwZ1ZOb0mLHFfYRgo.cache new file mode 100644 index 000000000..8eaa590a3 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/oO/oOoMXeKjzYgrSjp53bPIU-9Fg1lwZ1ZOb0mLHFfYRgo.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/oQ/oQgOlbOY7_P8DReHwRxXxf-tx2IeLTgMizonqglRTyU.cache b/tmp/cache/assets/sprockets/v3.0/oQ/oQgOlbOY7_P8DReHwRxXxf-tx2IeLTgMizonqglRTyU.cache new file mode 100644 index 000000000..3081cb732 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/oQ/oQgOlbOY7_P8DReHwRxXxf-tx2IeLTgMizonqglRTyU.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/ol/oLzjf4dPcM_gBleJuGFqA-bnOIhca_Sz2Q2WcAyaSs8.cache b/tmp/cache/assets/sprockets/v3.0/ol/oLzjf4dPcM_gBleJuGFqA-bnOIhca_Sz2Q2WcAyaSs8.cache new file mode 100644 index 000000000..836aa654e --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/ol/oLzjf4dPcM_gBleJuGFqA-bnOIhca_Sz2Q2WcAyaSs8.cache @@ -0,0 +1 @@ +"%hKD"•°UùͺsËYoý·3Fa,úîV7ƒPïÝ( \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/ol/olv-sSHBsvm_fJaQmig0h9_v2vCcLb1Das5INNta6FY.cache b/tmp/cache/assets/sprockets/v3.0/ol/olv-sSHBsvm_fJaQmig0h9_v2vCcLb1Das5INNta6FY.cache new file mode 100644 index 000000000..077db3f1b --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/ol/olv-sSHBsvm_fJaQmig0h9_v2vCcLb1Das5INNta6FY.cache @@ -0,0 +1 @@ +"%=[%ò}½®3¨äsjæè¨áršñü ë#Kðô”Å \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/oy/oy9ndOhMTXG2GaHaw2qDfRC0asmnPu9240c9Smw5mu4.cache b/tmp/cache/assets/sprockets/v3.0/oy/oy9ndOhMTXG2GaHaw2qDfRC0asmnPu9240c9Smw5mu4.cache new file mode 100644 index 000000000..aa9f4c19d --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/oy/oy9ndOhMTXG2GaHaw2qDfRC0asmnPu9240c9Smw5mu4.cache @@ -0,0 +1 @@ +I"”app/assets/javascripts/application.js?type=application/javascript&pipeline=debug&id=190389c7535fd937ce10d547754beabf78b2c89755bd690e72b63381c1b8f464:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/p0/p0reHGfKONza3hqdCawGI5jyDmpR13rEq73cMwgdpso.cache b/tmp/cache/assets/sprockets/v3.0/p0/p0reHGfKONza3hqdCawGI5jyDmpR13rEq73cMwgdpso.cache new file mode 100644 index 000000000..69222d98c --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/p0/p0reHGfKONza3hqdCawGI5jyDmpR13rEq73cMwgdpso.cache @@ -0,0 +1 @@ +"%3b¹Öpu&YGäš×—©%tÞÆã·æãCœÏ_­ûÀ \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/p2/P2JbOLJ2WzC-cxIbILt_7SG83F3WtPgzwrCVsCRWE7o.cache b/tmp/cache/assets/sprockets/v3.0/p2/P2JbOLJ2WzC-cxIbILt_7SG83F3WtPgzwrCVsCRWE7o.cache new file mode 100644 index 000000000..4d9ed3cc9 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/p2/P2JbOLJ2WzC-cxIbILt_7SG83F3WtPgzwrCVsCRWE7o.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/p2/p2y81nnZ313F-vMZMU2ZuVckWUC__Ow8OUZtoOjyv4Y.cache b/tmp/cache/assets/sprockets/v3.0/p2/p2y81nnZ313F-vMZMU2ZuVckWUC__Ow8OUZtoOjyv4Y.cache new file mode 100644 index 000000000..3081cb732 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/p2/p2y81nnZ313F-vMZMU2ZuVckWUC__Ow8OUZtoOjyv4Y.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/pP/PpC4T-Kz5pGYOxhsH92fHeY_pcRV_sYIpdG6Qt5XhXE.cache b/tmp/cache/assets/sprockets/v3.0/pP/PpC4T-Kz5pGYOxhsH92fHeY_pcRV_sYIpdG6Qt5XhXE.cache new file mode 100644 index 000000000..45655dae5 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/pP/PpC4T-Kz5pGYOxhsH92fHeY_pcRV_sYIpdG6Qt5XhXE.cache @@ -0,0 +1 @@ +I"ˆapp/assets/stylesheets/application.scss?type=text/css&pipeline=debug&id=c1a711bff9674dff736594f3b39d68d0e2360e068398035740791738e64459a4:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/pP/pPkvGWhsAEhgZbpME5o3j6oAgGUWzbJhpD1IwJ3GxJc.cache b/tmp/cache/assets/sprockets/v3.0/pP/pPkvGWhsAEhgZbpME5o3j6oAgGUWzbJhpD1IwJ3GxJc.cache new file mode 100644 index 000000000..cc0431f94 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/pP/pPkvGWhsAEhgZbpME5o3j6oAgGUWzbJhpD1IwJ3GxJc.cache @@ -0,0 +1 @@ +I"ˆapp/assets/stylesheets/application.scss?type=text/css&pipeline=debug&id=27504d56790578a987e97f2022ef5d2b4cd396f3d1db2d08603138e77a466aa9:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/pm/pmg7NWn8jAZ8zgwYXORCCoQrCTia2sYInaBnPGlr1-E.cache b/tmp/cache/assets/sprockets/v3.0/pm/pmg7NWn8jAZ8zgwYXORCCoQrCTia2sYInaBnPGlr1-E.cache new file mode 100644 index 000000000..6ed13f930 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/pm/pmg7NWn8jAZ8zgwYXORCCoQrCTia2sYInaBnPGlr1-E.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/py/pyoY7detRsL54PINNELlO3kRPqYL4WzTFoOaGjMpE2E.cache b/tmp/cache/assets/sprockets/v3.0/py/pyoY7detRsL54PINNELlO3kRPqYL4WzTFoOaGjMpE2E.cache new file mode 100644 index 000000000..6ed13f930 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/py/pyoY7detRsL54PINNELlO3kRPqYL4WzTFoOaGjMpE2E.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/q-/q-YMnC0vYt6DLi2qjKV_PCM8J-ICbRuz2-UXBtVHavY.cache b/tmp/cache/assets/sprockets/v3.0/q-/q-YMnC0vYt6DLi2qjKV_PCM8J-ICbRuz2-UXBtVHavY.cache new file mode 100644 index 000000000..dec1e72ea Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/q-/q-YMnC0vYt6DLi2qjKV_PCM8J-ICbRuz2-UXBtVHavY.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/q5/q5JAaai7ReXDjva8Ci7-bsMg7283RsNvaHNWWJisXts.cache b/tmp/cache/assets/sprockets/v3.0/q5/q5JAaai7ReXDjva8Ci7-bsMg7283RsNvaHNWWJisXts.cache new file mode 100644 index 000000000..a5ace07ac --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/q5/q5JAaai7ReXDjva8Ci7-bsMg7283RsNvaHNWWJisXts.cache @@ -0,0 +1,3 @@ +[o:Set: +@hash} +I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"Zprocessors:type=application/javascript&file_type=application/javascript&pipeline=self;TTI"wfile-digest:///Users/kjfitzpatrick/.rvm/gems/ruby-2.5.1/gems/bootstrap-4.1.3/assets/javascripts/bootstrap/alert.js;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/q7/q7NlIgIpgESCfqyxWTm1LHr7JilCKPWQTPiw6rC6nto.cache b/tmp/cache/assets/sprockets/v3.0/q7/q7NlIgIpgESCfqyxWTm1LHr7JilCKPWQTPiw6rC6nto.cache new file mode 100644 index 000000000..50a918ea1 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/q7/q7NlIgIpgESCfqyxWTm1LHr7JilCKPWQTPiw6rC6nto.cache @@ -0,0 +1 @@ +"%b¹¶m:©S3R1©,£ð?€=°-À`w«b<ÊMÖÙr \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/q8/q8POcAC8ii6uiJ_2QI2T2eZz5SgQF1gn4e_qWJXuXyE.cache b/tmp/cache/assets/sprockets/v3.0/q8/q8POcAC8ii6uiJ_2QI2T2eZz5SgQF1gn4e_qWJXuXyE.cache new file mode 100644 index 000000000..6ed13f930 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/q8/q8POcAC8ii6uiJ_2QI2T2eZz5SgQF1gn4e_qWJXuXyE.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/q9/q9wuOry7lLwLBKR8_7E42OuzVlaAIgtUAyMTYrTbt2o.cache b/tmp/cache/assets/sprockets/v3.0/q9/q9wuOry7lLwLBKR8_7E42OuzVlaAIgtUAyMTYrTbt2o.cache new file mode 100644 index 000000000..cc94c5263 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/q9/q9wuOry7lLwLBKR8_7E42OuzVlaAIgtUAyMTYrTbt2o.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/qA/qAewV2p--yXru6MPJ5_T82HmO_xMsKA8POVwT0Uurn4.cache b/tmp/cache/assets/sprockets/v3.0/qA/qAewV2p--yXru6MPJ5_T82HmO_xMsKA8POVwT0Uurn4.cache new file mode 100644 index 000000000..6ed13f930 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/qA/qAewV2p--yXru6MPJ5_T82HmO_xMsKA8POVwT0Uurn4.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/qB/qB4fL6jWVZkiygDWoiNrRzgGbNTI-CGgWuVp0Xpi4gs.cache b/tmp/cache/assets/sprockets/v3.0/qB/qB4fL6jWVZkiygDWoiNrRzgGbNTI-CGgWuVp0Xpi4gs.cache new file mode 100644 index 000000000..57cc12d42 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/qB/qB4fL6jWVZkiygDWoiNrRzgGbNTI-CGgWuVp0Xpi4gs.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/qB/qBEYzZG6DAcbBEz1I-qSsE0TPVXXGQvAL67GwL5wNi0.cache b/tmp/cache/assets/sprockets/v3.0/qB/qBEYzZG6DAcbBEz1I-qSsE0TPVXXGQvAL67GwL5wNi0.cache new file mode 100644 index 000000000..c96422d26 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/qB/qBEYzZG6DAcbBEz1I-qSsE0TPVXXGQvAL67GwL5wNi0.cache @@ -0,0 +1 @@ +I"‡app/assets/stylesheets/application.scss?type=text/css&pipeline=self&id=87f38c3f481850b309d72677b9de776ebe34c873f14a08cb08a3bc6761fdf6b2:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/qN/qNaQi-xATyrqCJ-oKv4yo-52XJ5CavDcXXAkZlQc1hI.cache b/tmp/cache/assets/sprockets/v3.0/qN/qNaQi-xATyrqCJ-oKv4yo-52XJ5CavDcXXAkZlQc1hI.cache new file mode 100644 index 000000000..5c5e1dcd9 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/qN/qNaQi-xATyrqCJ-oKv4yo-52XJ5CavDcXXAkZlQc1hI.cache @@ -0,0 +1 @@ +"%uWÛül§¹j›çZ xU«ß>Å?]‹÷pc‰Æs \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/qt/qthFJ1YA-da3oDHwdieZiA1E2f9xpG-0mmcQCO9A9WM.cache b/tmp/cache/assets/sprockets/v3.0/qt/qthFJ1YA-da3oDHwdieZiA1E2f9xpG-0mmcQCO9A9WM.cache new file mode 100644 index 000000000..efe81ad31 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/qt/qthFJ1YA-da3oDHwdieZiA1E2f9xpG-0mmcQCO9A9WM.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/r2/r2nvVp-4y3NVax5DfXUxZ7syvfrsnYHCy5l_hSJMpJs.cache b/tmp/cache/assets/sprockets/v3.0/r2/r2nvVp-4y3NVax5DfXUxZ7syvfrsnYHCy5l_hSJMpJs.cache new file mode 100644 index 000000000..cfe84965f --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/r2/r2nvVp-4y3NVax5DfXUxZ7syvfrsnYHCy5l_hSJMpJs.cache @@ -0,0 +1 @@ +"%JNº›KÉòlOç\É(# Ÿ–¸”MæUýt \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/r6/r6rDUZqlkgkT2v2i7stO--lh6WYvnifs51jZkyafYAk.cache b/tmp/cache/assets/sprockets/v3.0/r6/r6rDUZqlkgkT2v2i7stO--lh6WYvnifs51jZkyafYAk.cache new file mode 100644 index 000000000..b667b5e23 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/r6/r6rDUZqlkgkT2v2i7stO--lh6WYvnifs51jZkyafYAk.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/r8/R8wu3Ixp4_J5wllGaJC63w9fn3TUT_PyV1bSls5f9Fw.cache b/tmp/cache/assets/sprockets/v3.0/r8/R8wu3Ixp4_J5wllGaJC63w9fn3TUT_PyV1bSls5f9Fw.cache new file mode 100644 index 000000000..dbf8044de Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/r8/R8wu3Ixp4_J5wllGaJC63w9fn3TUT_PyV1bSls5f9Fw.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/r8/r8aUAbwvPk1YD9q2FOYlSkRKeb3Do222uaMx3DNEN38.cache b/tmp/cache/assets/sprockets/v3.0/r8/r8aUAbwvPk1YD9q2FOYlSkRKeb3Do222uaMx3DNEN38.cache new file mode 100644 index 000000000..25f8ac66a --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/r8/r8aUAbwvPk1YD9q2FOYlSkRKeb3Do222uaMx3DNEN38.cache @@ -0,0 +1 @@ +"%,ˆà„CÉ«ž¦¥:Ž¹Â˜Ø U÷â˃uˬÎ0¨' \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/rG/rGVL68PvbSsAgD5-Jq-rk02AF9aEipKRpnBjFWHuE1Y.cache b/tmp/cache/assets/sprockets/v3.0/rG/rGVL68PvbSsAgD5-Jq-rk02AF9aEipKRpnBjFWHuE1Y.cache new file mode 100644 index 000000000..3081cb732 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/rG/rGVL68PvbSsAgD5-Jq-rk02AF9aEipKRpnBjFWHuE1Y.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/rW/rWHTk_M0Wcp9oZVUaNqUJtFfYLiopReGwRXTXbk75Rw.cache b/tmp/cache/assets/sprockets/v3.0/rW/rWHTk_M0Wcp9oZVUaNqUJtFfYLiopReGwRXTXbk75Rw.cache new file mode 100644 index 000000000..a8ff4e0cd Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/rW/rWHTk_M0Wcp9oZVUaNqUJtFfYLiopReGwRXTXbk75Rw.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/rX/rXO_Kpra12RMOCkG_fDQcgjMUISqsDcrH1ECzMphZ-Y.cache b/tmp/cache/assets/sprockets/v3.0/rX/rXO_Kpra12RMOCkG_fDQcgjMUISqsDcrH1ECzMphZ-Y.cache new file mode 100644 index 000000000..6ed13f930 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/rX/rXO_Kpra12RMOCkG_fDQcgjMUISqsDcrH1ECzMphZ-Y.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/rX/rXh7LHn-TBVT5lnDlp7CERDCKxo9pvFeVZ6RByHfw1o.cache b/tmp/cache/assets/sprockets/v3.0/rX/rXh7LHn-TBVT5lnDlp7CERDCKxo9pvFeVZ6RByHfw1o.cache new file mode 100644 index 000000000..b5b138282 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/rX/rXh7LHn-TBVT5lnDlp7CERDCKxo9pvFeVZ6RByHfw1o.cache @@ -0,0 +1 @@ +"%TIçmÃN“6IšÈÌ’Ñõ±|CçøÎÝaî*™IÎ \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/rd/rdBhvG8onspuE1YCSFHUsmPpkEKgzVntOejNlnWTATk.cache b/tmp/cache/assets/sprockets/v3.0/rd/rdBhvG8onspuE1YCSFHUsmPpkEKgzVntOejNlnWTATk.cache new file mode 100644 index 000000000..495cb0e7d --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/rd/rdBhvG8onspuE1YCSFHUsmPpkEKgzVntOejNlnWTATk.cache @@ -0,0 +1 @@ +"%”[·>‚Ûæsž8ßo]³§JƒYUz‰`‚Qä³ \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/re/ref15omlzB-AptdCoi1U7p70G-R7rREyK4yAlWoQ6wY.cache b/tmp/cache/assets/sprockets/v3.0/re/ref15omlzB-AptdCoi1U7p70G-R7rREyK4yAlWoQ6wY.cache new file mode 100644 index 000000000..cc970afe9 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/re/ref15omlzB-AptdCoi1U7p70G-R7rREyK4yAlWoQ6wY.cache @@ -0,0 +1 @@ +"%‡Ö2ÙY‚É7TÐeCM‹œ.î”û×=Nât×â‘î}® \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/rm/rMlRnGEHxuMP7qGiMaW2MjQSquzuB_8dShSbk4yBQ2Y.cache b/tmp/cache/assets/sprockets/v3.0/rm/rMlRnGEHxuMP7qGiMaW2MjQSquzuB_8dShSbk4yBQ2Y.cache new file mode 100644 index 000000000..ac50d5990 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/rm/rMlRnGEHxuMP7qGiMaW2MjQSquzuB_8dShSbk4yBQ2Y.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/rm/rmMEjmHjcYycYslqzq-YfgGL40n35NDbQKN2X44LsRo.cache b/tmp/cache/assets/sprockets/v3.0/rm/rmMEjmHjcYycYslqzq-YfgGL40n35NDbQKN2X44LsRo.cache new file mode 100644 index 000000000..6dc25ee4b Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/rm/rmMEjmHjcYycYslqzq-YfgGL40n35NDbQKN2X44LsRo.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/rs/rSVD86O5vIaFdhqiyXsmeBfBkgXFCU480SK8VbbBEOY.cache b/tmp/cache/assets/sprockets/v3.0/rs/rSVD86O5vIaFdhqiyXsmeBfBkgXFCU480SK8VbbBEOY.cache new file mode 100644 index 000000000..77736a69c Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/rs/rSVD86O5vIaFdhqiyXsmeBfBkgXFCU480SK8VbbBEOY.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/rs/rssqDPcdBgWHwIi8u_w9qE1I8-hWqr-sLeLXFUEZjQo.cache b/tmp/cache/assets/sprockets/v3.0/rs/rssqDPcdBgWHwIi8u_w9qE1I8-hWqr-sLeLXFUEZjQo.cache new file mode 100644 index 000000000..79f3f2c5f --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/rs/rssqDPcdBgWHwIi8u_w9qE1I8-hWqr-sLeLXFUEZjQo.cache @@ -0,0 +1 @@ +I"Ó/Users/kjfitzpatrick/.rvm/gems/ruby-2.5.1/gems/bootstrap-4.1.3/assets/javascripts/bootstrap/button.js?type=application/javascript&pipeline=self&id=3a0445d574f472f8c103a4b11cd4d1638b35173fe834e82ecfbea9a327472185:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/s2/s2VmLaSiln-vQtwan9uC2IqhJIcNron5MeG9YDUG-oc.cache b/tmp/cache/assets/sprockets/v3.0/s2/s2VmLaSiln-vQtwan9uC2IqhJIcNron5MeG9YDUG-oc.cache new file mode 100644 index 000000000..0c8730780 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/s2/s2VmLaSiln-vQtwan9uC2IqhJIcNron5MeG9YDUG-oc.cache @@ -0,0 +1,2 @@ +"%3çñ„^›¡DM&³(:m·ÄÊ~¸éËzï¬ +Ë‚ \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/s5/s57OXfxcYjeASf4RVpYRFgKwGnP5F6FomOr5uMSzwak.cache b/tmp/cache/assets/sprockets/v3.0/s5/s57OXfxcYjeASf4RVpYRFgKwGnP5F6FomOr5uMSzwak.cache new file mode 100644 index 000000000..e8e3c7e9e --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/s5/s57OXfxcYjeASf4RVpYRFgKwGnP5F6FomOr5uMSzwak.cache @@ -0,0 +1,3 @@ +[o:Set: +@hash} +I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"Zprocessors:type=application/javascript&file_type=application/javascript&pipeline=self;TTI"yfile-digest:///Users/kjfitzpatrick/.rvm/gems/ruby-2.5.1/gems/bootstrap-4.1.3/assets/javascripts/bootstrap/tooltip.js;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/sA/SakBMEDf9yIjV6rtzbNeQrT_V_wX_pqyXPn_gzOS2z0.cache b/tmp/cache/assets/sprockets/v3.0/sA/SakBMEDf9yIjV6rtzbNeQrT_V_wX_pqyXPn_gzOS2z0.cache new file mode 100644 index 000000000..0d389ae79 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/sA/SakBMEDf9yIjV6rtzbNeQrT_V_wX_pqyXPn_gzOS2z0.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/sA/sAoLautTmXIWZ9K5tl6QC_0nBqCv5EtKdRqm-ERcD9U.cache b/tmp/cache/assets/sprockets/v3.0/sA/sAoLautTmXIWZ9K5tl6QC_0nBqCv5EtKdRqm-ERcD9U.cache new file mode 100644 index 000000000..cd8b336a7 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/sA/sAoLautTmXIWZ9K5tl6QC_0nBqCv5EtKdRqm-ERcD9U.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/sD/sD9pKX0XP86a2iuXEjlHCyGH5Fi7sf82hwVGupkVSJ0.cache b/tmp/cache/assets/sprockets/v3.0/sD/sD9pKX0XP86a2iuXEjlHCyGH5Fi7sf82hwVGupkVSJ0.cache new file mode 100644 index 000000000..6ff191c72 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/sD/sD9pKX0XP86a2iuXEjlHCyGH5Fi7sf82hwVGupkVSJ0.cache @@ -0,0 +1 @@ +I"ˆapp/assets/stylesheets/application.scss?type=text/css&pipeline=debug&id=785895cdcad44fc37ee5d31fc295e84ddce5c5da79a0325a8097a83536a6ba08:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/sE/sEm1JBG_zpIbdpATLAEuucLhZtfXmTLtwtytM_6wmOo.cache b/tmp/cache/assets/sprockets/v3.0/sE/sEm1JBG_zpIbdpATLAEuucLhZtfXmTLtwtytM_6wmOo.cache new file mode 100644 index 000000000..3081cb732 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/sE/sEm1JBG_zpIbdpATLAEuucLhZtfXmTLtwtytM_6wmOo.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/sR/sRaoE7ZaY9YNpLEo9ApFhO7oTkDgHsdegM0ROS4YDlI.cache b/tmp/cache/assets/sprockets/v3.0/sR/sRaoE7ZaY9YNpLEo9ApFhO7oTkDgHsdegM0ROS4YDlI.cache new file mode 100644 index 000000000..3b5c2cb7e --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/sR/sRaoE7ZaY9YNpLEo9ApFhO7oTkDgHsdegM0ROS4YDlI.cache @@ -0,0 +1,3 @@ +[o:Set: +@hash} +I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"Zprocessors:type=application/javascript&file_type=application/javascript&pipeline=self;TTI"ofile-digest:///Users/kjfitzpatrick/.rvm/gems/ruby-2.5.1/gems/popper_js-1.14.3/assets/javascripts/popper.js;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/sT/sTMBti6UiBiML1GKqHdzjf8AOXDcA6kgwq0TvexgleI.cache b/tmp/cache/assets/sprockets/v3.0/sT/sTMBti6UiBiML1GKqHdzjf8AOXDcA6kgwq0TvexgleI.cache new file mode 100644 index 000000000..b147a2140 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/sT/sTMBti6UiBiML1GKqHdzjf8AOXDcA6kgwq0TvexgleI.cache @@ -0,0 +1 @@ +I"‡app/assets/stylesheets/application.scss?type=text/css&pipeline=self&id=b12bf70fcdfe5c37d87b98ba481e6e410db6528fe79170e69c3ce935644dc1a5:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/sf/sfc9Y3ZlaIs6ZOQIwfNgi6M_DcDuS-uFWdAf8yWz0ho.cache b/tmp/cache/assets/sprockets/v3.0/sf/sfc9Y3ZlaIs6ZOQIwfNgi6M_DcDuS-uFWdAf8yWz0ho.cache new file mode 100644 index 000000000..b17e274e9 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/sf/sfc9Y3ZlaIs6ZOQIwfNgi6M_DcDuS-uFWdAf8yWz0ho.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/si/sifR1i4WOxwHCB0CpMqN0cEDxXkfJri4JdQdf5r48zg.cache b/tmp/cache/assets/sprockets/v3.0/si/sifR1i4WOxwHCB0CpMqN0cEDxXkfJri4JdQdf5r48zg.cache new file mode 100644 index 000000000..e3b237fc1 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/si/sifR1i4WOxwHCB0CpMqN0cEDxXkfJri4JdQdf5r48zg.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/sp/spAWIWpBeybvW2mylr7dkq1M1Gm3od0m2QW5WIjUUpk.cache b/tmp/cache/assets/sprockets/v3.0/sp/spAWIWpBeybvW2mylr7dkq1M1Gm3od0m2QW5WIjUUpk.cache new file mode 100644 index 000000000..d3ebecd9f Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/sp/spAWIWpBeybvW2mylr7dkq1M1Gm3od0m2QW5WIjUUpk.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/su/su0bv-ezPVnY0fPEpeDMcynFYOpAd007BRpJHm3Oq6c.cache b/tmp/cache/assets/sprockets/v3.0/su/su0bv-ezPVnY0fPEpeDMcynFYOpAd007BRpJHm3Oq6c.cache new file mode 100644 index 000000000..9190cfbef --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/su/su0bv-ezPVnY0fPEpeDMcynFYOpAd007BRpJHm3Oq6c.cache @@ -0,0 +1 @@ +"%¥¼8‘„¡Ý³ ©Æ—QyžLêœÆÆ/yXq¢E \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/sw/SwfXHjVCxQz75RfH81DQ8nxxj4ythdqkFL171A5xp3c.cache b/tmp/cache/assets/sprockets/v3.0/sw/SwfXHjVCxQz75RfH81DQ8nxxj4ythdqkFL171A5xp3c.cache new file mode 100644 index 000000000..d7e45732a --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/sw/SwfXHjVCxQz75RfH81DQ8nxxj4ythdqkFL171A5xp3c.cache @@ -0,0 +1 @@ +I"‡app/assets/stylesheets/application.scss?type=text/css&pipeline=self&id=6061a2272df9399e19a27934b076d8f2d43bae8335071a7fa05e07459d3b7e1b:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/sw/swhlDSWMfvDDyBLoPAnghfeHsenp6xI95KcvQ2mTKQA.cache b/tmp/cache/assets/sprockets/v3.0/sw/swhlDSWMfvDDyBLoPAnghfeHsenp6xI95KcvQ2mTKQA.cache new file mode 100644 index 000000000..e3fd21d16 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/sw/swhlDSWMfvDDyBLoPAnghfeHsenp6xI95KcvQ2mTKQA.cache @@ -0,0 +1 @@ +I"app/assets/javascripts/cable.js?type=application/javascript&pipeline=self&id=5c515b42475b6236db69c125814a21bec4a0d8ef0f2ab10e5a287df67c1fbd69:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/sz/Sz6cUlcSCc-YFPHOBCXxPKPRda5KC-vVhpWeXoPs8Y0.cache b/tmp/cache/assets/sprockets/v3.0/sz/Sz6cUlcSCc-YFPHOBCXxPKPRda5KC-vVhpWeXoPs8Y0.cache new file mode 100644 index 000000000..440bb33cf Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/sz/Sz6cUlcSCc-YFPHOBCXxPKPRda5KC-vVhpWeXoPs8Y0.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/sz/szVkvmV3Y4bUQb8S4awqHHideAfg64SF_IRaOxQ5Jd0.cache b/tmp/cache/assets/sprockets/v3.0/sz/szVkvmV3Y4bUQb8S4awqHHideAfg64SF_IRaOxQ5Jd0.cache new file mode 100644 index 000000000..8c549d35c Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/sz/szVkvmV3Y4bUQb8S4awqHHideAfg64SF_IRaOxQ5Jd0.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/tW/tWUI-YmThAAKycmQX0yN4B-eNKf7n8kHEuemYxt0hag.cache b/tmp/cache/assets/sprockets/v3.0/tW/tWUI-YmThAAKycmQX0yN4B-eNKf7n8kHEuemYxt0hag.cache new file mode 100644 index 000000000..89ae3b8c1 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/tW/tWUI-YmThAAKycmQX0yN4B-eNKf7n8kHEuemYxt0hag.cache @@ -0,0 +1 @@ +I"ˆapp/assets/stylesheets/application.scss?type=text/css&pipeline=debug&id=6962640a61850d20b8d2043ebfab17cf0168d8620ebbff26adc71093e5928bf9:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/tW/twTAk2SLz5VFkOIWzd9-RBXDbMHwiKCZHZopcMVEb9I.cache b/tmp/cache/assets/sprockets/v3.0/tW/twTAk2SLz5VFkOIWzd9-RBXDbMHwiKCZHZopcMVEb9I.cache new file mode 100644 index 000000000..f1c6d27f2 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/tW/twTAk2SLz5VFkOIWzd9-RBXDbMHwiKCZHZopcMVEb9I.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/te/teDaUBQzaPiAM5b0uwJ47bP_yDpqeDNWPqv__ERlGF4.cache b/tmp/cache/assets/sprockets/v3.0/te/teDaUBQzaPiAM5b0uwJ47bP_yDpqeDNWPqv__ERlGF4.cache new file mode 100644 index 000000000..5bf4c7e45 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/te/teDaUBQzaPiAM5b0uwJ47bP_yDpqeDNWPqv__ERlGF4.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/tm/tmkPDKcV4pMrUjwXReFD-mkWEAD1A97KEIYdY4JOQ6c.cache b/tmp/cache/assets/sprockets/v3.0/tm/tmkPDKcV4pMrUjwXReFD-mkWEAD1A97KEIYdY4JOQ6c.cache new file mode 100644 index 000000000..fb388315a --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/tm/tmkPDKcV4pMrUjwXReFD-mkWEAD1A97KEIYdY4JOQ6c.cache @@ -0,0 +1 @@ +I"ˆapp/assets/stylesheets/application.scss?type=text/css&pipeline=debug&id=f9726802e2341c512650ace4143c7c937c707fd939a52b36e286438c8bcd3aa8:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/tx/tx0rzRParFi-MbbitCcS-vMW-GlUfj39yakW5ceAygM.cache b/tmp/cache/assets/sprockets/v3.0/tx/tx0rzRParFi-MbbitCcS-vMW-GlUfj39yakW5ceAygM.cache new file mode 100644 index 000000000..6f1fd19f7 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/tx/tx0rzRParFi-MbbitCcS-vMW-GlUfj39yakW5ceAygM.cache @@ -0,0 +1 @@ +"%pp# ý½?‚Xù®in:Š¢ššç±tÙÚ¡É}ƒž \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/tx/txnsD_FZ-v-5H4u1RJa_w5ji0Hj4kfwlPzjlbMQ6ugA.cache b/tmp/cache/assets/sprockets/v3.0/tx/txnsD_FZ-v-5H4u1RJa_w5ji0Hj4kfwlPzjlbMQ6ugA.cache new file mode 100644 index 000000000..658e394ff --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/tx/txnsD_FZ-v-5H4u1RJa_w5ji0Hj4kfwlPzjlbMQ6ugA.cache @@ -0,0 +1,3 @@ +[o:Set: +@hash} +I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"Zprocessors:type=application/javascript&file_type=application/javascript&pipeline=self;TTI"~file-digest:///Users/kjfitzpatrick/.rvm/gems/ruby-2.5.1/gems/turbolinks-source-5.2.0/lib/assets/javascripts/turbolinks.js;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/u3/u3rdZIL9egB1kQ1tCqgcTEGGojboObWW-1h7YCL8NHc.cache b/tmp/cache/assets/sprockets/v3.0/u3/u3rdZIL9egB1kQ1tCqgcTEGGojboObWW-1h7YCL8NHc.cache new file mode 100644 index 000000000..f7dcd097a --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/u3/u3rdZIL9egB1kQ1tCqgcTEGGojboObWW-1h7YCL8NHc.cache @@ -0,0 +1 @@ +I"ˆapp/assets/stylesheets/application.scss?type=text/css&pipeline=debug&id=ec684474de70ee027a43575c51ef95b369d6393bb89279762ea9b1779f99e5e9:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/u7/U77aPHK3rpT-ZOKGLm5Coi3xzY-ogbRkhq_lbMnzfzg.cache b/tmp/cache/assets/sprockets/v3.0/u7/U77aPHK3rpT-ZOKGLm5Coi3xzY-ogbRkhq_lbMnzfzg.cache new file mode 100644 index 000000000..cf90a74b0 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/u7/U77aPHK3rpT-ZOKGLm5Coi3xzY-ogbRkhq_lbMnzfzg.cache @@ -0,0 +1 @@ +I"…app/assets/javascripts/application.js?type=application/javascript&id=f92d7b41a476f93cf49e5044febd093cfd9f218f3b33624f06cd9b57784e7a34:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/u7/U7q9Ovr7U7e2wyh8CojJnH5X8c2v63iJoN9EnxKd4dc.cache b/tmp/cache/assets/sprockets/v3.0/u7/U7q9Ovr7U7e2wyh8CojJnH5X8c2v63iJoN9EnxKd4dc.cache new file mode 100644 index 000000000..25bf9d2ed Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/u7/U7q9Ovr7U7e2wyh8CojJnH5X8c2v63iJoN9EnxKd4dc.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/u7/u7VUzW-7McvPxhjU2ucmIxPzR2Bquc-MUjHZxJcHSHU.cache b/tmp/cache/assets/sprockets/v3.0/u7/u7VUzW-7McvPxhjU2ucmIxPzR2Bquc-MUjHZxJcHSHU.cache new file mode 100644 index 000000000..fadf261ff Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/u7/u7VUzW-7McvPxhjU2ucmIxPzR2Bquc-MUjHZxJcHSHU.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/uI/uI1ykJ8-jt5-BbcITXINb5I3nDTbWPLE2LbSBwoRUXU.cache b/tmp/cache/assets/sprockets/v3.0/uI/uI1ykJ8-jt5-BbcITXINb5I3nDTbWPLE2LbSBwoRUXU.cache new file mode 100644 index 000000000..a07937ec4 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/uI/uI1ykJ8-jt5-BbcITXINb5I3nDTbWPLE2LbSBwoRUXU.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/uQ/uQJVutqfISnqk6LUZiuTMqH_22TBgo5s14EbG1ivVwI.cache b/tmp/cache/assets/sprockets/v3.0/uQ/uQJVutqfISnqk6LUZiuTMqH_22TBgo5s14EbG1ivVwI.cache new file mode 100644 index 000000000..d449dc7e8 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/uQ/uQJVutqfISnqk6LUZiuTMqH_22TBgo5s14EbG1ivVwI.cache @@ -0,0 +1 @@ +"%G‹@Ìå÷ãÖR™„g›?/n‚O L­H>bÕ©ñ \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/uU/uUGkE-NyWI54Gd1U-MT-ss4Rcfb5Jr2b-zR4QmANqeU.cache b/tmp/cache/assets/sprockets/v3.0/uU/uUGkE-NyWI54Gd1U-MT-ss4Rcfb5Jr2b-zR4QmANqeU.cache new file mode 100644 index 000000000..6ed13f930 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/uU/uUGkE-NyWI54Gd1U-MT-ss4Rcfb5Jr2b-zR4QmANqeU.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/uW/Uwt-ghOpLCHq5ke53EWuZS0t0O0N66uUiCMT_bo4Isc.cache b/tmp/cache/assets/sprockets/v3.0/uW/Uwt-ghOpLCHq5ke53EWuZS0t0O0N66uUiCMT_bo4Isc.cache new file mode 100644 index 000000000..c83361e38 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/uW/Uwt-ghOpLCHq5ke53EWuZS0t0O0N66uUiCMT_bo4Isc.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/uW/uWGOsfzIfmXezxZjV9KzEd3279lhDFrhs2R_GBXmjVM.cache b/tmp/cache/assets/sprockets/v3.0/uW/uWGOsfzIfmXezxZjV9KzEd3279lhDFrhs2R_GBXmjVM.cache new file mode 100644 index 000000000..5e0b9360b Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/uW/uWGOsfzIfmXezxZjV9KzEd3279lhDFrhs2R_GBXmjVM.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/uj/ujDOQ-v-hCr69ebiljNT6QbEUvPDoRU6ToqXS_1wZzA.cache b/tmp/cache/assets/sprockets/v3.0/uj/ujDOQ-v-hCr69ebiljNT6QbEUvPDoRU6ToqXS_1wZzA.cache new file mode 100644 index 000000000..d47fbc371 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/uj/ujDOQ-v-hCr69ebiljNT6QbEUvPDoRU6ToqXS_1wZzA.cache @@ -0,0 +1 @@ +I"ˆapp/assets/stylesheets/application.scss?type=text/css&pipeline=debug&id=452c702a368fef39410dfe9a7a9a11f06f95942057d0cdb10d8da3e0bc31220d:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/uo/uouLX9N_QQSloPSd4TkYpG0IpQ9qpFiVpp-st-odSZY.cache b/tmp/cache/assets/sprockets/v3.0/uo/uouLX9N_QQSloPSd4TkYpG0IpQ9qpFiVpp-st-odSZY.cache new file mode 100644 index 000000000..2236f63cb --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/uo/uouLX9N_QQSloPSd4TkYpG0IpQ9qpFiVpp-st-odSZY.cache @@ -0,0 +1 @@ +I"ˆapp/assets/stylesheets/application.scss?type=text/css&pipeline=debug&id=36675311f2a5001663239552d9c280049b4cdc5829b3fbc40e2ae33ad102bb33:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/us/usi4mcrEjnHeDfAXxvcxa3KwrSSfsWxO6FMApAABknQ.cache b/tmp/cache/assets/sprockets/v3.0/us/usi4mcrEjnHeDfAXxvcxa3KwrSSfsWxO6FMApAABknQ.cache new file mode 100644 index 000000000..ec77a07c6 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/us/usi4mcrEjnHeDfAXxvcxa3KwrSSfsWxO6FMApAABknQ.cache @@ -0,0 +1 @@ +"%§€9¼UqG÷¤¹<› °B2&þg²C ༭Lm_ns\ \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/vM/VMwyZxvLV2KYa4-NSRCgnPtSAs1jGdLhAaatbhJZcvg.cache b/tmp/cache/assets/sprockets/v3.0/vM/VMwyZxvLV2KYa4-NSRCgnPtSAs1jGdLhAaatbhJZcvg.cache new file mode 100644 index 000000000..2295e3972 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/vM/VMwyZxvLV2KYa4-NSRCgnPtSAs1jGdLhAaatbhJZcvg.cache @@ -0,0 +1 @@ +I"ˆapp/assets/stylesheets/application.scss?type=text/css&pipeline=debug&id=c8b0e436b5d0caca893930349369ab767c66cf8d0153b7b2c717647a594205cd:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/vM/vMAE-zQBcQSc5H9tR2fa7w2jPXfUXkj_LEFixHYDlJI.cache b/tmp/cache/assets/sprockets/v3.0/vM/vMAE-zQBcQSc5H9tR2fa7w2jPXfUXkj_LEFixHYDlJI.cache new file mode 100644 index 000000000..c4e07db05 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/vM/vMAE-zQBcQSc5H9tR2fa7w2jPXfUXkj_LEFixHYDlJI.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/vM/vMmfh5fDUt1GgeGMWyqmciMgcahqSq-kXY2iIkgbOrE.cache b/tmp/cache/assets/sprockets/v3.0/vM/vMmfh5fDUt1GgeGMWyqmciMgcahqSq-kXY2iIkgbOrE.cache new file mode 100644 index 000000000..faa45327d --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/vM/vMmfh5fDUt1GgeGMWyqmciMgcahqSq-kXY2iIkgbOrE.cache @@ -0,0 +1 @@ +"%g½4ðáÿ¦ù.Ñ"^*›ˆÃ¬¾ ¼ \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/x7/X7ZDFnUx7zjwUTPC_2DWH4Xpo-WHudjWZd1L_nVjT5I.cache b/tmp/cache/assets/sprockets/v3.0/x7/X7ZDFnUx7zjwUTPC_2DWH4Xpo-WHudjWZd1L_nVjT5I.cache new file mode 100644 index 000000000..89aae0abb --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/x7/X7ZDFnUx7zjwUTPC_2DWH4Xpo-WHudjWZd1L_nVjT5I.cache @@ -0,0 +1 @@ +"%klð“E¹bÉ¥H–Ÿ®7ɵ‹&Ø6&&JSéˆ \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/x7/x7LEi6aqEP76Q4dfDVMfjjvo054kDKpKW_ktBFfjlkQ.cache b/tmp/cache/assets/sprockets/v3.0/x7/x7LEi6aqEP76Q4dfDVMfjjvo054kDKpKW_ktBFfjlkQ.cache new file mode 100644 index 000000000..440bb33cf Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/x7/x7LEi6aqEP76Q4dfDVMfjjvo054kDKpKW_ktBFfjlkQ.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/x8/x81SnLOnnP5yzCCZ4t0gVBeevKgSi2H8DOn--7zLhqI.cache b/tmp/cache/assets/sprockets/v3.0/x8/x81SnLOnnP5yzCCZ4t0gVBeevKgSi2H8DOn--7zLhqI.cache new file mode 100644 index 000000000..db5035202 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/x8/x81SnLOnnP5yzCCZ4t0gVBeevKgSi2H8DOn--7zLhqI.cache @@ -0,0 +1 @@ +"%(£åg‡‡